aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.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/console.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/console.cpp')
-rw-r--r--engines/sci/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 60bd129efc..419f5e1415 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -1532,7 +1532,7 @@ bool Console::cmdUndither(int argc, const char **argv) {
}
bool flag = atoi(argv[1]) ? true : false;
- _engine->_gfxScreen->debugUnditherSetState(flag);
+ _engine->_gfxScreen->enableUndithering(flag);
if (flag)
DebugPrintf("undithering ENABLED\n");
else