[Scummvm-git-logs] scummvm master -> 1dd09a2eb2624bb7b7f598a224f2b2cbf568864f
dreammaster
paulfgilbert at gmail.com
Mon Dec 7 05:15:13 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:
1dd09a2eb2 GLK: COMPREHEND: Fix switching to disk 2 in Crimson Crown
Commit: 1dd09a2eb2624bb7b7f598a224f2b2cbf568864f
https://github.com/scummvm/scummvm/commit/1dd09a2eb2624bb7b7f598a224f2b2cbf568864f
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-12-06T21:15:01-08:00
Commit Message:
GLK: COMPREHEND: Fix switching to disk 2 in Crimson Crown
Changed paths:
engines/glk/comprehend/game.cpp
diff --git a/engines/glk/comprehend/game.cpp b/engines/glk/comprehend/game.cpp
index 20ef395fab..703873fab8 100644
--- a/engines/glk/comprehend/game.cpp
+++ b/engines/glk/comprehend/game.cpp
@@ -472,7 +472,7 @@ void ComprehendGame::move_to(uint8 room) {
if (room >= (int)_rooms.size())
error("Attempted to move to invalid room %.2x\n", room);
- _currentRoom = room;
+ _currentRoom = _currentRoomCopy = room;
_updateFlags = (UPDATE_GRAPHICS | UPDATE_ROOM_DESC |
UPDATE_ITEM_LIST);
}
More information about the Scummvm-git-logs
mailing list