[Scummvm-git-logs] scummvm master -> 6d8c4c783f3877e0d4002ffc54cc4f10348cd568
sluicebox
22204938+sluicebox at users.noreply.github.com
Mon Sep 7 06:41:44 UTC 2020
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:
6d8c4c783f SCI32: Fix LSL6 HIRES Mac planes when restoring
Commit: 6d8c4c783f3877e0d4002ffc54cc4f10348cd568
https://github.com/scummvm/scummvm/commit/6d8c4c783f3877e0d4002ffc54cc4f10348cd568
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2020-09-06T23:40:25-07:00
Commit Message:
SCI32: Fix LSL6 HIRES Mac planes when restoring
Fixes an incorrect game-id test which prevented deleting planes
Changed paths:
engines/sci/graphics/frameout.cpp
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp
index 52fc3a4678..5bcf4702bc 100644
--- a/engines/sci/graphics/frameout.cpp
+++ b/engines/sci/graphics/frameout.cpp
@@ -354,7 +354,7 @@ void GfxFrameout::deletePlanesForMacRestore() {
// care of this in both PC and Mac versions.
if (!(g_sci->getGameId() == GID_GK1 ||
g_sci->getGameId() == GID_PQ4 ||
- g_sci->getGameId() == GID_LSL6 ||
+ g_sci->getGameId() == GID_LSL6HIRES ||
g_sci->getGameId() == GID_KQ7)) {
return;
}
More information about the Scummvm-git-logs
mailing list