aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/game.h')
-rw-r--r--engines/gob/game.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/gob/game.h b/engines/gob/game.h
index 426d081fc7..9ffc1b103d 100644
--- a/engines/gob/game.h
+++ b/engines/gob/game.h
@@ -58,7 +58,8 @@ public:
struct TotResTable {
int16 itemsCount;
byte unknown;
- TotResItem items[1];
+ TotResItem *items;
+ char *dataPtr;
} GCC_PACK;
#define szGame_ExtItem (4 + 2 + 2 + 2)
@@ -85,7 +86,8 @@ public:
#define szGame_TotTextTable (2)
struct TotTextTable {
int16 itemsCount;
- TotTextItem items[1];
+ TotTextItem *items;
+ char *dataPtr;
} GCC_PACK;
struct InputDesc {