aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2012-03-25 22:16:58 +0300
committerFilippos Karapetis2012-03-25 22:18:35 +0300
commit570237ea51c9103b20516d2911632fad9330515e (patch)
tree7491a3233546013212731d91c79db611b3adaf6b
parent9e93b8306dad9d596827d1674c789057483f20e9 (diff)
downloadscummvm-rg350-570237ea51c9103b20516d2911632fad9330515e.tar.gz
scummvm-rg350-570237ea51c9103b20516d2911632fad9330515e.tar.bz2
scummvm-rg350-570237ea51c9103b20516d2911632fad9330515e.zip
GUI: Remove leftover code for the global dithering checkbox
-rw-r--r--base/commandLine.cpp1
-rw-r--r--gui/launcher.cpp3
-rw-r--r--gui/options.cpp1
3 files changed, 1 insertions, 4 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 6407ab1c4a..6fd020cb15 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -169,7 +169,6 @@ void registerDefaults() {
// Graphics
ConfMan.registerDefault("fullscreen", false);
ConfMan.registerDefault("aspect_ratio", false);
- ConfMan.registerDefault("disable_dithering", false);
ConfMan.registerDefault("gfx_mode", "normal");
ConfMan.registerDefault("render_mode", "default");
ConfMan.registerDefault("desired_screen_aspect_ratio", "auto");
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 1670c2da88..a86a98f819 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -367,8 +367,7 @@ void EditGameDialog::open() {
e = ConfMan.hasKey("gfx_mode", _domain) ||
ConfMan.hasKey("render_mode", _domain) ||
ConfMan.hasKey("fullscreen", _domain) ||
- ConfMan.hasKey("aspect_ratio", _domain) ||
- ConfMan.hasKey("disable_dithering", _domain);
+ ConfMan.hasKey("aspect_ratio", _domain);
_globalGraphicsOverride->setState(e);
e = ConfMan.hasKey("music_driver", _domain) ||
diff --git a/gui/options.cpp b/gui/options.cpp
index 3f3ac73ca3..4fc37c93da 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -349,7 +349,6 @@ void OptionsDialog::close() {
} else {
ConfMan.removeKey("fullscreen", _domain);
ConfMan.removeKey("aspect_ratio", _domain);
- ConfMan.removeKey("disable_dithering", _domain);
ConfMan.removeKey("gfx_mode", _domain);
ConfMan.removeKey("render_mode", _domain);
}