aboutsummaryrefslogtreecommitdiff
path: root/engines/touche/touche.h
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.h
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.h')
-rw-r--r--engines/touche/touche.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/touche/touche.h b/engines/touche/touche.h
index d7dd188ac7..65b196aff6 100644
--- a/engines/touche/touche.h
+++ b/engines/touche/touche.h
@@ -729,11 +729,13 @@ protected:
uint8 *_offscreenBuffer;
uint8 _paletteBuffer[256 * 4];
- static OpcodeProc _opcodesTable[NUM_OPCODES];
static SpriteData _spritesTable[NUM_SPRITES];
static const uint8 _directionsTable[];
static char _saveLoadDescriptionsTable[10][33];
static const Common::Rect _inventoryAreasTable[13];
+
+ const OpcodeProc *_opcodesTable;
+ void setupOpcodes();
};
/*