[Scummvm-cvs-logs] scummvm master -> 05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9

Kirben kirben at optusnet.com.au
Tue Aug 9 03:49:42 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:
05c0c8e98b SCUMM: Backyard Soccer 2004 uses a different INI setting to disable printing.


Commit: 05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9
    https://github.com/scummvm/scummvm/commit/05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9
Author: Travis Howell (kirben at optusnet.com.au)
Date: 2011-08-08T18:46:50-07:00

Commit Message:
SCUMM: Backyard Soccer 2004 uses a different INI setting to disable printing.

Changed paths:
    engines/scumm/he/script_v72he.cpp



diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp
index 0510f77..b9f454d 100644
--- a/engines/scumm/he/script_v72he.cpp
+++ b/engines/scumm/he/script_v72he.cpp
@@ -1827,7 +1827,7 @@ void ScummEngine_v72he::o72_readINI() {
 	switch (subOp) {
 	case 43: // HE 100
 	case 6: // number
-		if (!strcmp((char *)option, "NoPrinting")) {
+		if (!strcmp((char *)option, "DisablePrinting") || !strcmp((char *)option, "NoPrinting")) {
 			push(1);
 		} else if (!strcmp((char *)option, "TextOn")) {
 			push(ConfMan.getBool("subtitles"));






More information about the Scummvm-git-logs mailing list