aboutsummaryrefslogtreecommitdiff
path: root/saga/isomap.cpp
diff options
context:
space:
mode:
authorMax Horn2004-06-27 21:30:33 +0000
committerMax Horn2004-06-27 21:30:33 +0000
commita1b82d8e13ca41834c494839c2a05ae7638a38c3 (patch)
treefb4b281fd195265035cbb1751dbdcc71b9216f8e /saga/isomap.cpp
parent4b2d86392473184211a41e2fdc8a5d8188a4e636 (diff)
downloadscummvm-rg350-a1b82d8e13ca41834c494839c2a05ae7638a38c3.tar.gz
scummvm-rg350-a1b82d8e13ca41834c494839c2a05ae7638a38c3.tar.bz2
scummvm-rg350-a1b82d8e13ca41834c494839c2a05ae7638a38c3.zip
Cleanup for MemoryReadStream; made it match the File-class interface
svn-id: r14086
Diffstat (limited to 'saga/isomap.cpp')
-rw-r--r--saga/isomap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/isomap.cpp b/saga/isomap.cpp
index 8396ea10b0..8b20a4d279 100644
--- a/saga/isomap.cpp
+++ b/saga/isomap.cpp
@@ -57,7 +57,7 @@ int ISOMAP_LoadTileset(const byte *tileres_p, size_t tileres_len) {
IsoModule.tile_ct = first_entry.tile_offset / SAGA_ISOTILE_ENTRY_LEN;
- readS->rewind();
+ readS->seek(0);
tile_tbl = (R_ISOTILE_ENTRY *)malloc(IsoModule.tile_ct * sizeof *tile_tbl);
if (tile_tbl == NULL) {