aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorMax Horn2011-05-09 14:41:49 +0200
committerMax Horn2011-05-09 14:41:49 +0200
commit76cf7bc907f7d8dafaddd01a42c843c6a06cd5f2 (patch)
treef2a99063ec926451c47b8e0433ca45db70ccb806 /engines/sci/sci.cpp
parentb4058a696ab507991b6b8c8cf6c0bdd9cb5c714f (diff)
downloadscummvm-rg350-76cf7bc907f7d8dafaddd01a42c843c6a06cd5f2.tar.gz
scummvm-rg350-76cf7bc907f7d8dafaddd01a42c843c6a06cd5f2.tar.bz2
scummvm-rg350-76cf7bc907f7d8dafaddd01a42c843c6a06cd5f2.zip
SCI: Slight cleanup to undithering code
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 85c2eced19..8a81ea7240 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -218,7 +218,7 @@ Common::Error SciEngine::run() {
// Initialize the game screen
_gfxScreen = new GfxScreen(_resMan);
- _gfxScreen->debugUnditherSetState(ConfMan.getBool("disable_dithering"));
+ _gfxScreen->enableUndithering(ConfMan.getBool("disable_dithering"));
// Create debugger console. It requires GFX to be initialized
_console = new Console(this);