diff options
author | Alyssa Milburn | 2011-03-11 19:12:05 +0100 |
---|---|---|
committer | Alyssa Milburn | 2011-03-11 19:15:56 +0100 |
commit | 5acac402af8d31cae2b10884fab4d7571fdc2cca (patch) | |
tree | 14685880a48710f44a6b626a33deeafb0e464ddb /engines/mohawk | |
parent | 2a37ed395c4090b531137722e65b74157f814a95 (diff) | |
download | scummvm-rg350-5acac402af8d31cae2b10884fab4d7571fdc2cca.tar.gz scummvm-rg350-5acac402af8d31cae2b10884fab4d7571fdc2cca.tar.bz2 scummvm-rg350-5acac402af8d31cae2b10884fab4d7571fdc2cca.zip |
MOHAWK: Seek to first frame on kLBOpRewind.
This might need some further thought when implementing more complex
seeking for the later games, but works for now.
Diffstat (limited to 'engines/mohawk')
-rw-r--r-- | engines/mohawk/livingbooks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index 13dc07ac3a..5d6c57adfe 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -2443,7 +2443,7 @@ void LBItem::runScriptEntry(LBScriptEntry *entry) { break; case kLBOpRewind: - target->seek(0); + target->seek(1); break; case kLBOpStop: |