aboutsummaryrefslogtreecommitdiff
path: root/base/commandLine.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-11-04 15:58:53 +0000
committerFilippos Karapetis2010-11-04 15:58:53 +0000
commit1dac4fbd557fc07be1bbc0dbbe94b1705b601a2a (patch)
treea3711c27a4a108d9d85d3612e1b429762a0b57da /base/commandLine.cpp
parentb7f1e3b239d33b783d0fbec83027320ca0037f02 (diff)
downloadscummvm-rg350-1dac4fbd557fc07be1bbc0dbbe94b1705b601a2a.tar.gz
scummvm-rg350-1dac4fbd557fc07be1bbc0dbbe94b1705b601a2a.tar.bz2
scummvm-rg350-1dac4fbd557fc07be1bbc0dbbe94b1705b601a2a.zip
SCI/SCUMMVM: Added an option to enable the dithering removal algorithm (so called "undithering") in the graphics options tab. The algorithm is now disabled by default, after popular demand. In retrospect, we really shouldn't have made it default, in order to preserve the authenticity of the graphics in early SCI EGA games, and allow the user to opt in and enable the option if needed. Unfortunately, the lack of an easy way to modify the option made it hard to do so.
svn-id: r54066
Diffstat (limited to 'base/commandLine.cpp')
-rw-r--r--base/commandLine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 6ee3ef382d..31ecab470a 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -157,6 +157,7 @@ void registerDefaults() {
// Graphics
ConfMan.registerDefault("fullscreen", false);
ConfMan.registerDefault("aspect_ratio", false);
+ ConfMan.registerDefault("sci_undither", false);
ConfMan.registerDefault("gfx_mode", "normal");
ConfMan.registerDefault("render_mode", "default");
ConfMan.registerDefault("desired_screen_aspect_ratio", "auto");