diff -ur ScummVM-cvs20040212/scummvm/README ScummVM-cvs20040212+hack/scummvm/README
old
|
new
|
|
364 | 364 | --native-mt32 True Roland MT-32 (disable GM emulation) |
365 | 365 | --aspect-ratio Enable aspect ratio correction |
366 | 366 | |
367 | | --floppy-intro Use floppy version intro for Beneath a Steel Sky CD |
| 367 | --alt-intro Use alternative intro for CD versions of Beneath a |
| 368 | Steel Sky and Flight of the Amazon Queen |
368 | 369 | --copy-protection Enable copy protection in SCUMM games ,when |
369 | 370 | ScummVM disables it by default. |
370 | 371 | --demo-mode Start demo mode of Maniac Mansion (Classic version) |
… |
… |
|
879 | 880 | copy_protection bool Enable copy protection in SCUMM games ,when |
880 | 881 | ScummVM disables it by default. |
881 | 882 | demo_mode bool Start demo in Maniac Mansion (Classic version) |
882 | | floppy_intro bool Use floppy version of introduction in Beneath |
883 | | a Steel Sky (CD version) |
| 883 | alt_intro bool Use alternative intro for CD versions of |
| 884 | Beneath a Steel Sky and Flight of the Amazon |
| 885 | Queen |
884 | 886 | |
885 | 887 | boot_param number Pass this number to the boot script |
886 | 888 | debuglevel number Enable debug output. The higher number, the |
diff -ur ScummVM-cvs20040212/scummvm/base/gameDetector.cpp ScummVM-cvs20040212+hack/scummvm/base/gameDetector.cpp
old
|
new
|
|
79 | 79 | " --native-mt32 True Roland MT-32 (disable GM emulation)\n" |
80 | 80 | " --aspect-ratio Enable aspect ratio correction\n" |
81 | 81 | "\n" |
82 | | #ifndef DISABLE_SKY |
83 | | " --floppy-intro Use floppy version intro for Beneath a Steel Sky CD\n" |
| 82 | #if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN) |
| 83 | " --alt-intro Use alternative intro for CD versions of Beneath a\n" |
| 84 | " Steel Sky and Flight of the Amazon Queen\n" |
84 | 85 | #endif |
85 | 86 | #ifndef DISABLE_SCUMM |
86 | 87 | " --copy-protection Enable the original copy protection in SCUMM games\n" |
… |
… |
|
136 | 137 | ConfMan.registerDefault("tempo", 0); |
137 | 138 | #endif |
138 | 139 | |
139 | | #ifndef DISABLE_SKY |
140 | | ConfMan.registerDefault("floppy_intro", false); |
| 140 | #if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN) |
| 141 | ConfMan.registerDefault("alt_intro", false); |
141 | 142 | #endif |
142 | 143 | |
143 | 144 | // Miscellaneous |
… |
… |
|
439 | 440 | END_OPTION |
440 | 441 | #endif |
441 | 442 | |
442 | | #ifndef DISABLE_SKY |
443 | | DO_LONG_OPTION_BOOL("floppy-intro") |
444 | | ConfMan.set("floppy_intro", cmdValue, kTransientDomain); |
| 443 | #if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN) |
| 444 | DO_LONG_OPTION_BOOL("alt-intro") |
| 445 | ConfMan.set("alt_intro", cmdValue, kTransientDomain); |
445 | 446 | END_OPTION |
446 | 447 | #endif |
447 | 448 | |
diff -ur ScummVM-cvs20040212/scummvm/doc/05_01.tex ScummVM-cvs20040212+hack/scummvm/doc/05_01.tex
old
|
new
|
|
37 | 37 | --native-mt32 &True Roland MT-32 (disable GM emulation)\\ |
38 | 38 | --aspect-ratio &Enable aspect ratio correction\\ |
39 | 39 | \\ |
40 | | --floppy-intro &Use floppy version intro for Beneath a Steel Sky CD\\ |
| 40 | --alt-intro &Use alternative intro for CD versions of Beneath a\\ |
| 41 | &Steel Sky and Flight of the Amazon Queen\\ |
41 | 42 | --copy-protection &Enable copy protection in SCUMM games, when\\ |
42 | 43 | &ScummVM disables it by default.\\ |
43 | 44 | --demo-mode &Start demo mode of Maniac Mansion (Classic version)\\ |
diff -ur ScummVM-cvs20040212/scummvm/doc/08.tex ScummVM-cvs20040212+hack/scummvm/doc/08.tex
old
|
new
|
|
105 | 105 | copy\_protection&bool Enable copy protection in SCUMM games ,when\\ |
106 | 106 | & ScummVM disables it by default.\\ |
107 | 107 | demo\_mode &bool Start demo in Maniac Mansion (Classic version)\\ |
108 | | floppy\_intro &bool Use floppy version of introduction in Beneath\\ |
109 | | & a Steel Sky (CD version)\\ |
| 108 | alt\_intro &bool Use alternative intro for CD versions of \\ |
| 109 | & Beneath a Steel Sky and Flight of the Amazon\\ |
| 110 | & Queen |
110 | 111 | \\ |
111 | 112 | boot\_param &number Pass this number to the boot script\\ |
112 | 113 | debuglevel &number Enable debug output. The higher number, the\\ |
diff -ur ScummVM-cvs20040212/scummvm/sky/sky.cpp ScummVM-cvs20040212+hack/scummvm/sky/sky.cpp
old
|
new
|
|
123 | 123 | |
124 | 124 | _debugMode = ConfMan.hasKey("debuglevel"); |
125 | 125 | |
126 | | _floppyIntro = ConfMan.getBool("floppy_intro"); |
| 126 | _floppyIntro = ConfMan.getBool("alt_intro"); |
127 | 127 | |
128 | 128 | _fastMode = 0; |
129 | 129 | |