From a3bc66bcbd15fa6532b6f502cde42e06fbbb1a6a Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 28 Oct 2006 01:21:13 +0000 Subject: SCUMM: Fix what I believe is a long-standing bug in FileChunk::reseek() svn-id: r24545 --- engines/scumm/smush/chunk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/scumm/smush/chunk.cpp b/engines/scumm/smush/chunk.cpp index e70018b6f7..72d14c9776 100644 --- a/engines/scumm/smush/chunk.cpp +++ b/engines/scumm/smush/chunk.cpp @@ -121,7 +121,7 @@ Chunk *FileChunk::subBlock() { } void FileChunk::reseek() { - _data->seek(_offset + _curPos, SEEK_CUR); + _data->seek(_offset + _curPos, SEEK_SET); } uint32 FileChunk::read(void *buffer, uint32 dataSize) { -- cgit v1.2.3