sfx-volume config var

This commit is contained in:
Frank DeMarco 2016-09-05 22:55:01 -04:00
parent 296df41d2c
commit a92fe4df98
1 changed files with 4 additions and 1 deletions

View File

@ -133,6 +133,7 @@ class Configuration(RawConfigParser):
section = "audio"
add_section(section)
set_option(section, "sfx-path", "aud/fx/", False)
set_option(section, "sfx-volume", "1.0", False)
section = "interpolator-gui"
add_section(section)
set_option(section, "margin", "80", False)
@ -413,7 +414,9 @@ class TypeDeclarations(dict):
"joy": {"int": ["advance", "pause", "select"]},
"audio": {"path": "sfx-path"},
"audio": {"path": "sfx-path",
"float": "sfx-volume"},
"event": {"int": "command-id-offset"},