aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2005-04-17 22:59:43 +0000
committerMax Horn2005-04-17 22:59:43 +0000
commitc4e7f403f8b36c4c0437b6fa911f383dfa0770ab (patch)
treeface6ccf1d8b387fa5de70ffaaf03a2dbb7c420b /scumm/scumm.h
parentadc21c1ac338489b6ef02cb54ae6642495fdbfc5 (diff)
downloadscummvm-rg350-c4e7f403f8b36c4c0437b6fa911f383dfa0770ab.tar.gz
scummvm-rg350-c4e7f403f8b36c4c0437b6fa911f383dfa0770ab.tar.bz2
scummvm-rg350-c4e7f403f8b36c4c0437b6fa911f383dfa0770ab.zip
Split out some index reading code into a new method readIndexBlock()
svn-id: r17659
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 80ee075b0d..35da5caa02 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -682,7 +682,6 @@ protected:
Common::String _targetName; // This is the game the user calls it, so use for saving
byte _resourceMapper[128];
byte *_heV7DiskOffsets;
- byte *_heV7RoomOffsets;
uint32 *_heV7RoomIntOffsets;
const byte *_resourceLastSearchBuf; // FIXME: need to put it to savefile?
uint32 _resourceLastSearchSize; // FIXME: need to put it to savefile?
@@ -725,6 +724,7 @@ protected:
virtual void readMAXS(int blockSize) = 0;
virtual void readGlobalObjects();
virtual void readIndexFile();
+ virtual void readIndexBlock(uint32 block, uint32 itemsize);
virtual void loadCharset(int i);
void nukeCharset(int i);