diff options
Diffstat (limited to 'common/gui_options.cpp')
-rw-r--r-- | common/gui_options.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/gui_options.cpp b/common/gui_options.cpp index df880f4fee..120edd0b91 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -29,6 +29,8 @@ namespace Common { const struct GameOpt { const char *option; + // Each description must be a unique identifier not containing a substring + // of any other description const char *desc; } g_gameOptions[] = { { GUIO_NOSUBTITLES, "sndNoSubs" }, @@ -36,6 +38,9 @@ const struct GameOpt { { GUIO_NOSPEECH, "sndNoSpeech" }, { GUIO_NOSFX, "sndNoSFX" }, { GUIO_NOMIDI, "sndNoMIDI" }, + { GUIO_LINKSPEECHTOSFX, "sndLinkSpeechToSfx" }, + { GUIO_LINKMUSICTOSFX, "sndLinkMusicToSfx" }, + { GUIO_NOSPEECHVOLUME, "sndNoSpchVolume" }, { GUIO_NOLAUNCHLOAD, "launchNoLoad" }, |