aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/util.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-01-29 17:04:37 +0000
committerSven Hesse2007-01-29 17:04:37 +0000
commit36a54218b16cef112909bb5362f5d85615368fab (patch)
tree867039305d23d9a71da10c93a1a223d4318487f9 /engines/gob/util.cpp
parent9a7c1c9baf56f28e78acdff45bf6d573daa89a2f (diff)
downloadscummvm-rg350-36a54218b16cef112909bb5362f5d85615368fab.tar.gz
scummvm-rg350-36a54218b16cef112909bb5362f5d85615368fab.tar.bz2
scummvm-rg350-36a54218b16cef112909bb5362f5d85615368fab.zip
- Another attempt at fixing the immediately-closing notepad heisenbug (#1621089)
- Implemented wide surfaces + scrolling - Some clean-up svn-id: r25253
Diffstat (limited to 'engines/gob/util.cpp')
-rw-r--r--engines/gob/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 35c17bb9cf..47a5ce076d 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -318,7 +318,7 @@ void Util::clearPalette(void) {
int16 i;
byte colors[768];
- if (_vm->_global->_videoMode != 0x13)
+ if ((_vm->_global->_videoMode != 0x13) && (_vm->_global->_videoMode != 0x14))
error("clearPalette: Video mode 0x%x is not supported!",
_vm->_global->_videoMode);