[Scummvm-git-logs] scummvm master -> 7e1361e2c28d24c8a6dd59dc2bbc0204c1692116

sev- sev at scummvm.org
Wed Dec 19 00:35:56 CET 2018


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:
7e1361e2c2 BLADERUNNER: Actually use normalized chapter number in the 'scene' command


Commit: 7e1361e2c28d24c8a6dd59dc2bbc0204c1692116
    https://github.com/scummvm/scummvm/commit/7e1361e2c28d24c8a6dd59dc2bbc0204c1692116
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2018-12-19T00:35:29+01:00

Commit Message:
BLADERUNNER: Actually use normalized chapter number in the 'scene' command

Changed paths:
    engines/bladerunner/debugger.cpp


diff --git a/engines/bladerunner/debugger.cpp b/engines/bladerunner/debugger.cpp
index f1c76eb..9863dd9 100644
--- a/engines/bladerunner/debugger.cpp
+++ b/engines/bladerunner/debugger.cpp
@@ -441,7 +441,7 @@ bool Debugger::cmdScene(int argc, const char **argv) {
 
 		uint i;
 		for (i = 0; sceneList[i].chapter != 0; i++) {
-			if (sceneList[i].chapter == chapterId && sceneName.equalsIgnoreCase(sceneList[i].name))
+			if (sceneList[i].chapter == chapterIdNormalized && sceneName.equalsIgnoreCase(sceneList[i].name))
 				break;
 		}
 





More information about the Scummvm-git-logs mailing list