[Scummvm-git-logs] scummvm master -> 5cf86c0ae5edc5bd30b2c5347006f5e068d81d70

Strangerke Strangerke at scummvm.org
Tue Jun 9 22:34: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:
5cf86c0ae5 KINGDOM: Fix a couple of issues in GPL3_560 and GPL3_781


Commit: 5cf86c0ae5edc5bd30b2c5347006f5e068d81d70
    https://github.com/scummvm/scummvm/commit/5cf86c0ae5edc5bd30b2c5347006f5e068d81d70
Author: Strangerke (Strangerke at scummvm.org)
Date: 2020-06-09T23:33:55+01:00

Commit Message:
KINGDOM: Fix a couple of issues in GPL3_560 and GPL3_781

Changed paths:
    engines/kingdom/logic3.cpp


diff --git a/engines/kingdom/logic3.cpp b/engines/kingdom/logic3.cpp
index 344ecda02b..dd8e8c2d1f 100644
--- a/engines/kingdom/logic3.cpp
+++ b/engines/kingdom/logic3.cpp
@@ -431,7 +431,7 @@ void Logic::GPL3_560() {
 	_nodeNum = 56;
 	_vm->drawLocation();
 	_vm->_userInput = 0;
-	if (_vm->_wizard) {
+	if (!_vm->_wizard) {
 		_vm->_frameStop = 50;
 		enAll();
 		_vm->playMovie(135);
@@ -1655,15 +1655,15 @@ void Logic::GPL3_781() {
 		if (_vm->_wizard) {
 			_vm->_frameStop = 64;
 			_vm->playMovie(173);
-			inventoryDel(1);
 		} else {
 			_vm->_frameStop = 66;
 			_vm->_fstFwd = false;
 			_vm->playMovie(172);
 			_vm->_fstFwd = true;
-			_vm->playMovie(201);
+			_vm->playMovie(215);
 		}
 
+		inventoryDel(1);
 		_vm->fShowPic(471);
 		_currMap = 124;
 		break;




More information about the Scummvm-git-logs mailing list