diff options
author | Filippos Karapetis | 2018-11-05 01:27:12 +0200 |
---|---|---|
committer | Filippos Karapetis | 2018-11-05 01:27:12 +0200 |
commit | 4f37de9ce9c69d0ade9d8f4970404da7bad52948 (patch) | |
tree | 1de87e563261a3fbff348a9f78b8519c4c36692d | |
parent | 4929104dbe94490ca94d380fa0cbc68a7c5f774b (diff) | |
download | scummvm-rg350-4f37de9ce9c69d0ade9d8f4970404da7bad52948.tar.gz scummvm-rg350-4f37de9ce9c69d0ade9d8f4970404da7bad52948.tar.bz2 scummvm-rg350-4f37de9ce9c69d0ade9d8f4970404da7bad52948.zip |
ZVISION: Fix GUIO flags for the DVD version of ZGI
-rw-r--r-- | engines/zvision/detection_tables.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/zvision/detection_tables.h b/engines/zvision/detection_tables.h index d33d931f15..17d6abaab3 100644 --- a/engines/zvision/detection_tables.h +++ b/engines/zvision/detection_tables.h @@ -247,11 +247,11 @@ static const ZVisionGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformWindows, GF_DVD, - GUIO4(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_DOUBLE_FPS, GAMEOPTION_DISABLE_ANIM_WHILE_TURNING, #if defined(USE_MPEG2) && defined(USE_A52) - GAMEOPTION_USE_HIRES_MPEG_MOVIES + GUIO5(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_DOUBLE_FPS, GAMEOPTION_DISABLE_ANIM_WHILE_TURNING, GAMEOPTION_USE_HIRES_MPEG_MOVIES) +#else + GUIO4(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_DOUBLE_FPS, GAMEOPTION_DISABLE_ANIM_WHILE_TURNING) #endif - ) }, GID_GRANDINQUISITOR }, |