aboutsummaryrefslogtreecommitdiff
path: root/engines/touche/touche.cpp
diff options
context:
space:
mode:
authorChris Apers2006-11-04 15:09:20 +0000
committerChris Apers2006-11-04 15:09:20 +0000
commit6f0c12fe8665dc9d494226edc375559356e299e3 (patch)
treeef07a86d7dc8867774f6a5c9464b4d578a764f0b /engines/touche/touche.cpp
parent5a902f8f7a40f2f2182a0b2149959f8889c468ef (diff)
downloadscummvm-rg350-6f0c12fe8665dc9d494226edc375559356e299e3.tar.gz
scummvm-rg350-6f0c12fe8665dc9d494226edc375559356e299e3.tar.bz2
scummvm-rg350-6f0c12fe8665dc9d494226edc375559356e299e3.zip
Fixed zero filled _opcodeTable[] with PalmOS ARM compiler
svn-id: r24599
Diffstat (limited to 'engines/touche/touche.cpp')
-rw-r--r--engines/touche/touche.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/touche/touche.cpp b/engines/touche/touche.cpp
index 0f9200601b..f037d7010c 100644
--- a/engines/touche/touche.cpp
+++ b/engines/touche/touche.cpp
@@ -64,6 +64,7 @@ ToucheEngine::ToucheEngine(OSystem *system, Common::Language language)
_fullRedrawCounter = 0;
_redrawScreenCounter1 = 0;
memset(_paletteBuffer, 0, sizeof(_paletteBuffer));
+ setupOpcodes();
Common::addSpecialDebugLevel(kDebugEngine, "Engine", "Engine debug level");
Common::addSpecialDebugLevel(kDebugGraphics, "Graphics", "Graphics debug level");