diff options
author | Thierry Crozat | 2018-10-31 22:27:58 +0000 |
---|---|---|
committer | Thierry Crozat | 2018-11-04 22:33:22 +0100 |
commit | e4ff1929aa7823c3716a9ea48e1f8a9524154742 (patch) | |
tree | 0f02d4a149da9c98f67f3d0c38dad06438836f9f /engines/zvision | |
parent | e2935acfe4a6d332f7b1388fa98fce711cde8c12 (diff) | |
download | scummvm-rg350-e4ff1929aa7823c3716a9ea48e1f8a9524154742.tar.gz scummvm-rg350-e4ff1929aa7823c3716a9ea48e1f8a9524154742.tar.bz2 scummvm-rg350-e4ff1929aa7823c3716a9ea48e1f8a9524154742.zip |
ZVISION: Only add mpeg video engine options when mpeg and a52 are enabled
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/detection_tables.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/zvision/detection_tables.h b/engines/zvision/detection_tables.h index 32c51040b7..d33d931f15 100644 --- a/engines/zvision/detection_tables.h +++ b/engines/zvision/detection_tables.h @@ -247,7 +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, GAMEOPTION_USE_HIRES_MPEG_MOVIES) + GUIO4(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_DOUBLE_FPS, GAMEOPTION_DISABLE_ANIM_WHILE_TURNING, +#if defined(USE_MPEG2) && defined(USE_A52) + GAMEOPTION_USE_HIRES_MPEG_MOVIES +#endif + ) }, GID_GRANDINQUISITOR }, |