aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
authorSven Hesse2007-04-02 11:05:09 +0000
committerSven Hesse2007-04-02 11:05:09 +0000
commit53119f2c5d782798e3e1be9e15626be931947ae8 (patch)
tree030fb876403ec3c8bf96c452db7cdd9ecd130b6a /engines/gob/gob.h
parent89a29e32bfc1815a5a205126fb947a8c318f78bb (diff)
downloadscummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.tar.gz
scummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.tar.bz2
scummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.zip
"char *" -> "byte *" where appropriate
svn-id: r26369
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();