diff options
author | Matthew Hoops | 2010-12-10 02:10:18 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-12-10 02:10:18 +0000 |
commit | 6bc638a54bad6856794cb32ea31e33c31079e099 (patch) | |
tree | 8054c61cb33cef4af3c2b437bfd4e52bdb2b90b9 /engines | |
parent | cf65709c4570d59cf12114c36310923911d7c737 (diff) | |
download | scummvm-rg350-6bc638a54bad6856794cb32ea31e33c31079e099.tar.gz scummvm-rg350-6bc638a54bad6856794cb32ea31e33c31079e099.tar.bz2 scummvm-rg350-6bc638a54bad6856794cb32ea31e33c31079e099.zip |
MOHAWK: Fix the Myst drawImage debug command
svn-id: r54850
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/console.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp index c995f8ca66..8594b1c4f6 100644 --- a/engines/mohawk/console.cpp +++ b/engines/mohawk/console.cpp @@ -174,6 +174,7 @@ bool MystConsole::Cmd_DrawImage(int argc, const char **argv) { rect = Common::Rect((uint16)atoi(argv[2]), (uint16)atoi(argv[3]), (uint16)atoi(argv[4]), (uint16)atoi(argv[5])); _vm->_gfx->copyImageToScreen((uint16)atoi(argv[1]), rect); + _vm->_gfx->updateScreen(); return false; } |