diff options
author | Travis Howell | 2011-08-09 11:46:50 +1000 |
---|---|---|
committer | Travis Howell | 2011-08-09 11:46:50 +1000 |
commit | 05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9 (patch) | |
tree | 1693054a426461b8736ca946398ba8c3936329c2 /engines | |
parent | dbceb0a77d64d6e16b0186417ab92c425eddb173 (diff) | |
download | scummvm-rg350-05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9.tar.gz scummvm-rg350-05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9.tar.bz2 scummvm-rg350-05c0c8e98bbfd9432d32d0592ad80f3f210d5bd9.zip |
SCUMM: Backyard Soccer 2004 uses a different INI setting to disable printing.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/he/script_v72he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp index 0510f77740..b9f454de0f 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")); |