[Scummvm-cvs-logs] scummvm master -> 5e174cbfe466dbbe8e5470b0a00de1481b986181

Kirben kirben at optusnet.com.au
Sat Aug 27 02:51:00 CEST 2011


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:
5e174cbfe4 AGOS: Fix load/save issues in Waxworks, which were caused by error in loadRoomItems.


Commit: 5e174cbfe466dbbe8e5470b0a00de1481b986181
    https://github.com/scummvm/scummvm/commit/5e174cbfe466dbbe8e5470b0a00de1481b986181
Author: Travis Howell (kirben at optusnet.com.au)
Date: 2011-08-26T17:46:54-07:00

Commit Message:
AGOS: Fix load/save issues in Waxworks, which were caused by error in loadRoomItems.

Changed paths:
    engines/agos/rooms.cpp



diff --git a/engines/agos/rooms.cpp b/engines/agos/rooms.cpp
index f2629e4..fb7b313 100644
--- a/engines/agos/rooms.cpp
+++ b/engines/agos/rooms.cpp
@@ -401,9 +401,9 @@ bool AGOSEngine::loadRoomItems(uint16 room) {
 		filename[i] = 0;
 		p++;
 
-		for (;;) {
-			_roomsListPtr = p;
+		_roomsListPtr = p;
 
+		for (;;) {
 			minNum = READ_BE_UINT16(p); p += 2;
 			if (minNum == 0)
 				break;






More information about the Scummvm-git-logs mailing list