diff options
Diffstat (limited to 'engines/made/scriptfuncs.cpp')
-rw-r--r-- | engines/made/scriptfuncs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/scriptfuncs.cpp b/engines/made/scriptfuncs.cpp index 03ea762d78..5aa4b41eaa 100644 --- a/engines/made/scriptfuncs.cpp +++ b/engines/made/scriptfuncs.cpp @@ -185,12 +185,12 @@ int16 ScriptFunctionsRtz::o1_DRAWPIC(int16 argc, int16 *argv) { } int16 ScriptFunctionsRtz::o1_CLS(int16 argc, int16 *argv) { - //_vm->_screen->clearScreen(); + _vm->_screen->clearScreen(); return 0; } int16 ScriptFunctionsRtz::o1_SHOWPAGE(int16 argc, int16 *argv) { - //_vm->_system->setPalette(_vm->_screen->_palette, 0, 256); + _vm->_system->setPalette(_vm->_screen->_screenPalette, 0, 256); _vm->_screen->show(); return 0; } |