diff options
author | Travis Howell | 2003-12-18 04:19:38 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-18 04:19:38 +0000 |
commit | d89eea3ac3f3f93a92039dd99f539224b49fb681 (patch) | |
tree | 98284f7d4e3023d4f31f7fff790f795ddb55f185 | |
parent | a458da989bbe77d798f68f253ee63a68c925b6c0 (diff) | |
download | scummvm-rg350-d89eea3ac3f3f93a92039dd99f539224b49fb681.tar.gz scummvm-rg350-d89eea3ac3f3f93a92039dd99f539224b49fb681.tar.bz2 scummvm-rg350-d89eea3ac3f3f93a92039dd99f539224b49fb681.zip |
Missed one spot when switching subtitle options.
svn-id: r11730
-rw-r--r-- | scumm/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index 33309812ab..b8770596cf 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -465,7 +465,7 @@ void ConfigDialog::close() { if (getResult()) { // Subtitles - ConfMan.set("nosubtitles", !subtitlesCheckbox->getState(), _domain); + ConfMan.set("subtitles", !subtitlesCheckbox->getState(), _domain); } GUI_OptionsDialog::close(); |