[Scummvm-git-logs] scummvm master -> 2b1bfeeee5adca547e25195b78834fb8eff0d636

sluicebox 22204938+sluicebox at users.noreply.github.com
Tue Apr 21 02:30:47 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:
2b1bfeeee5 SCI32: Fix KQ7 Mac logic in restore from launcher


Commit: 2b1bfeeee5adca547e25195b78834fb8eff0d636
    https://github.com/scummvm/scummvm/commit/2b1bfeeee5adca547e25195b78834fb8eff0d636
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2020-04-20T19:26:14-07:00

Commit Message:
SCI32: Fix KQ7 Mac logic in restore from launcher

Changed paths:
    engines/sci/engine/guest_additions.cpp


diff --git a/engines/sci/engine/guest_additions.cpp b/engines/sci/engine/guest_additions.cpp
index 2219c4ee81..603afe6d26 100644
--- a/engines/sci/engine/guest_additions.cpp
+++ b/engines/sci/engine/guest_additions.cpp
@@ -800,7 +800,7 @@ bool GuestAdditions::restoreFromLauncher() const {
 			// initialize KQ7 Mac's global save state by recording the save id
 			//  and description. this is necessary for subsequent saves to work
 			//  after restoring from launcher.
-			if (g_sci->getGameId() == GID_KQ7 || g_sci->getPlatform() == Common::kPlatformMacintosh) {
+			if (g_sci->getGameId() == GID_KQ7 && g_sci->getPlatform() == Common::kPlatformMacintosh) {
 				_state->_kq7MacSaveGameId = saveId;
 
 				SavegameDesc savegameDesc;




More information about the Scummvm-git-logs mailing list