Ticket #8328: alt-intro.diff

File alt-intro.diff, 5.3 KB (added by eriktorbjorn, 20 years ago)

Patch against a February 12 CVS snapshot

  • scummvm/README

    diff -ur ScummVM-cvs20040212/scummvm/README ScummVM-cvs20040212+hack/scummvm/README
    old new  
    364364  --native-mt32            True Roland MT-32 (disable GM emulation)
    365365  --aspect-ratio           Enable aspect ratio correction
    366366
    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
    368369  --copy-protection        Enable copy protection in SCUMM games ,when
    369370                           ScummVM disables it by default.
    370371  --demo-mode              Start demo mode of Maniac Mansion (Classic version)
     
    879880        copy_protection bool     Enable copy protection in SCUMM games ,when
    880881                                 ScummVM disables it by default.
    881882        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
    884886
    885887        boot_param      number   Pass this number to the boot script
    886888        debuglevel      number   Enable debug output. The higher number, the
  • scummvm/base/gameDetector.cpp

    diff -ur ScummVM-cvs20040212/scummvm/base/gameDetector.cpp ScummVM-cvs20040212+hack/scummvm/base/gameDetector.cpp
    old new  
    7979        "  --native-mt32            True Roland MT-32 (disable GM emulation)\n"
    8080        "  --aspect-ratio           Enable aspect ratio correction\n"
    8181        "\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"
    8485#endif
    8586#ifndef DISABLE_SCUMM
    8687        "  --copy-protection        Enable the original copy protection in SCUMM games\n"
     
    136137        ConfMan.registerDefault("tempo", 0);
    137138#endif
    138139
    139 #ifndef DISABLE_SKY
    140         ConfMan.registerDefault("floppy_intro", false);
     140#if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN)
     141        ConfMan.registerDefault("alt_intro", false);
    141142#endif
    142143
    143144        // Miscellaneous
     
    439440                        END_OPTION
    440441#endif
    441442
    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);
    445446                        END_OPTION
    446447#endif
    447448
  • scummvm/doc/05_01.tex

    diff -ur ScummVM-cvs20040212/scummvm/doc/05_01.tex ScummVM-cvs20040212+hack/scummvm/doc/05_01.tex
    old new  
    3737  --native-mt32           &True Roland MT-32 (disable GM emulation)\\
    3838  --aspect-ratio          &Enable aspect ratio correction\\
    3939\\
    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\\
    4142  --copy-protection       &Enable copy protection in SCUMM games, when\\
    4243                          &ScummVM disables it by default.\\
    4344  --demo-mode             &Start demo mode of Maniac Mansion (Classic version)\\
  • scummvm/doc/08.tex

    diff -ur ScummVM-cvs20040212/scummvm/doc/08.tex ScummVM-cvs20040212+hack/scummvm/doc/08.tex
    old new  
    105105        copy\_protection&bool     Enable copy protection in SCUMM games ,when\\
    106106                        &         ScummVM disables it by default.\\
    107107        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
    110111\\
    111112        boot\_param     &number   Pass this number to the boot script\\
    112113        debuglevel      &number   Enable debug output. The higher number, the\\
  • scummvm/sky/sky.cpp

    diff -ur ScummVM-cvs20040212/scummvm/sky/sky.cpp ScummVM-cvs20040212+hack/scummvm/sky/sky.cpp
    old new  
    123123       
    124124        _debugMode = ConfMan.hasKey("debuglevel");
    125125
    126         _floppyIntro = ConfMan.getBool("floppy_intro");
     126        _floppyIntro = ConfMan.getBool("alt_intro");
    127127
    128128        _fastMode = 0;
    129129