aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-06-19 15:17:50 +0000
committerPaweł Kołodziejski2004-06-19 15:17:50 +0000
commit22048dca5864e10dc00e69432d2cc96cbdb10b71 (patch)
treed86d77ca263e935eb8667d720cb591cdcf3b664b
parent212a451b1aa6b1a865c8af1112113ce4fdd21b9a (diff)
downloadscummvm-rg350-22048dca5864e10dc00e69432d2cc96cbdb10b71.tar.gz
scummvm-rg350-22048dca5864e10dc00e69432d2cc96cbdb10b71.tar.bz2
scummvm-rg350-22048dca5864e10dc00e69432d2cc96cbdb10b71.zip
that was very bad
svn-id: r13966
-rw-r--r--scumm/imuse_digi/dimuse_bndmgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/imuse_digi/dimuse_bndmgr.cpp b/scumm/imuse_digi/dimuse_bndmgr.cpp
index d41106b597..aeaa3efcef 100644
--- a/scumm/imuse_digi/dimuse_bndmgr.cpp
+++ b/scumm/imuse_digi/dimuse_bndmgr.cpp
@@ -104,7 +104,7 @@ int BundleDirCache::matchFile(const char *filename, const char *directory) {
name[z] = '\0';
strcpy(_budleDirCache[freeSlot].bundleTable[i].filename, name);
_budleDirCache[freeSlot].bundleTable[i].offset = file.readUint32BE();
- file.seek(4);
+ file.seek(4, SEEK_CUR);
}
return freeSlot;
} else {
@@ -185,7 +185,7 @@ int32 BundleMgr::decompressSampleByIndex(int32 index, int32 offset, int32 size,
_file.seek(_bundleTable[index].offset, SEEK_SET);
tag = _file.readUint32BE();
_numCompItems = num = _file.readUint32BE();
- _file.seek(8);
+ _file.seek(8, SEEK_CUR);
if (tag != MKID_BE('COMP')) {
warning("BundleMgr::decompressSampleByIndex() Compressed sound %d invalid (%s)", index, tag2str(tag));
@@ -198,7 +198,7 @@ int32 BundleMgr::decompressSampleByIndex(int32 index, int32 offset, int32 size,
_compTable[i].offset = _file.readUint32BE();
_compTable[i].size = _file.readUint32BE();
_compTable[i].codec = _file.readUint32BE();
- _file.seek(4);
+ _file.seek(4, SEEK_CUR);
if (_compTable[i].size > maxSize)
maxSize = _compTable[i].size;
}