[Scummvm-git-logs] scummvm master -> 1115c902e645f8301354667383d5b028e124eda8
neuromancer
noreply at scummvm.org
Sun Nov 10 07:28:39 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
1115c902e6 FREESCAPE: fix crash in castle demo for dos
Commit: 1115c902e645f8301354667383d5b028e124eda8
https://github.com/scummvm/scummvm/commit/1115c902e645f8301354667383d5b028e124eda8
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2024-11-10T08:30:29+01:00
Commit Message:
FREESCAPE: fix crash in castle demo for dos
Changed paths:
engines/freescape/games/castle/dos.cpp
diff --git a/engines/freescape/games/castle/dos.cpp b/engines/freescape/games/castle/dos.cpp
index 324c52bb785..1b1306d05ac 100644
--- a/engines/freescape/games/castle/dos.cpp
+++ b/engines/freescape/games/castle/dos.cpp
@@ -347,7 +347,7 @@ void CastleEngine::loadAssetsDOSDemo() {
_strenghtWeightsFrames = loadFramesWithHeaderDOS(stream, 4);
_spiritsMeterIndicatorBackgroundFrame = loadFrameWithHeaderDOS(stream);
_spiritsMeterIndicatorFrame = loadFrameWithHeaderDOS(stream);
- loadFrameWithHeaderDOS(stream); // side
+ _spiritsMeterIndicatorSideFrame = loadFrameWithHeaderDOS(stream); // side
loadFrameWithHeaderDOS(stream); // ???
stream->seek(0x221ae - 0x2a0);
More information about the Scummvm-git-logs
mailing list