Ticket #2991: amiga-patch.diff

File amiga-patch.diff, 1.1 KB (added by SF/dsx, 18 years ago)

Amiga mode patch

  • engines/agi/agi.cpp

     
    377377                break;
    378378        }
    379379
    380         game.game_flags |= opt.amiga ? ID_AMIGA : 0;
     380        game.game_flags |= opt.amiga_mode ? ID_AMIGA : 0;
    381381        game.game_flags |= opt.agds ? ID_AGDS : 0;
    382382
    383383        if (game.game_flags & ID_AMIGA)
     
    444444        assert(this->_gameDescription != NULL);
    445445
    446446        if( (this->_gameDescription->features & AGI_AMIGA) == AGI_AMIGA)
    447                 opt.amiga = true;
     447                opt.amiga_mode = true;
    448448
    449449        if( (this->_gameDescription->features & AGI_AGDS) == AGI_AGDS)
    450450                opt.agds = true;
  • engines/agi/agi.h

     
    202202        int gamerun;            /**< game run mode*/
    203203        int emuversion;         /**< AGI version to emulate */
    204204        int agds;                       /**< enable AGDS mode */
    205         int amiga;                      /**< enable Amiga mode */
     205        int amiga_mode;                 /**< enable Amiga mode */
    206206        int nosound;            /**< disable sound */
    207207        Common::RenderMode renderMode;
    208208        int soundemu;           /**< sound emulation mode */