aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/gob.h')
-rw-r--r--engines/gob/gob.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/gob.h b/engines/gob/gob.h
index 222b6a84f2..c74b7632ef 100644
--- a/engines/gob/gob.h
+++ b/engines/gob/gob.h
@@ -165,7 +165,7 @@ class GobEngine : public Engine {
protected:
char **_saveFiles;
char *_saveSlotFile;
- char _saveIndex[600];
+ byte _saveIndex[600];
byte _saveIndexSizes[600];
GobEngine *_vm;
@@ -175,8 +175,8 @@ protected:
const char *getSaveSlotFile(int slot);
bool saveGame(int saveSlot, int16 dataVar, int32 size, int32 offset);
bool loadGame(int saveSlot, int16 dataVar, int32 size, int32 offset);
- uint32 writeDataEndian(Common::OutSaveFile &out, char *varBuf, byte *sizeBuf, int32 size);
- uint32 readDataEndian(Common::InSaveFile &in, char *varBuf, byte *sizeBuf, int32 size);
+ uint32 writeDataEndian(Common::OutSaveFile &out, byte *varBuf, byte *sizeBuf, int32 size);
+ uint32 readDataEndian(Common::InSaveFile &in, byte *varBuf, byte *sizeBuf, int32 size);
bool detectGame();