[Scummvm-git-logs] scummvm master -> 376c264701c63f1fb3549d8d82463924619d3317

digitall 547637+digitall at users.noreply.github.com
Thu Jun 24 15:14:02 UTC 2021


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
07164813ba PARALLACTION: fix IFCHAR command to skip if other character.
376c264701 PARALLACTION: style.


Commit: 07164813ba9863c82daefcea5db417a71be0ccaf
    https://github.com/scummvm/scummvm/commit/07164813ba9863c82daefcea5db417a71be0ccaf
Author: Nicola Mettifogo (nicola_ at gc4.so-net.ne.jp)
Date: 2021-06-24T16:13:58+01:00

Commit Message:
PARALLACTION: fix IFCHAR command to skip if other character.

Changed paths:
    engines/parallaction/parser_br.cpp


diff --git a/engines/parallaction/parser_br.cpp b/engines/parallaction/parser_br.cpp
index ad43b47c68..01d2fe2ae4 100644
--- a/engines/parallaction/parser_br.cpp
+++ b/engines/parallaction/parser_br.cpp
@@ -502,7 +502,7 @@ DECLARE_LOCATION_PARSER(zeta)  {
 DECLARE_COMMAND_PARSER(ifchar)  {
 	debugC(7, kDebugParser, "COMMAND_PARSER(ifchar) ");
 
-	if (!scumm_stricmp(_vm->_char.getName(), _tokens[1]))
+	if (scumm_stricmp(_vm->_char.getName(), _tokens[1]))
 		_script->skip("endif");
 }
 


Commit: 376c264701c63f1fb3549d8d82463924619d3317
    https://github.com/scummvm/scummvm/commit/376c264701c63f1fb3549d8d82463924619d3317
Author: Nicola Mettifogo (nicola_ at gc4.so-net.ne.jp)
Date: 2021-06-24T16:13:58+01:00

Commit Message:
PARALLACTION: style.

Changed paths:
    engines/parallaction/parser_br.cpp


diff --git a/engines/parallaction/parser_br.cpp b/engines/parallaction/parser_br.cpp
index 01d2fe2ae4..3a4a3d8dd6 100644
--- a/engines/parallaction/parser_br.cpp
+++ b/engines/parallaction/parser_br.cpp
@@ -502,8 +502,9 @@ DECLARE_LOCATION_PARSER(zeta)  {
 DECLARE_COMMAND_PARSER(ifchar)  {
 	debugC(7, kDebugParser, "COMMAND_PARSER(ifchar) ");
 
-	if (scumm_stricmp(_vm->_char.getName(), _tokens[1]))
+	if (scumm_stricmp(_vm->_char.getName(), _tokens[1])) {
 		_script->skip("endif");
+	}
 }
 
 




More information about the Scummvm-git-logs mailing list