diff options
author | Colin Snover | 2017-08-05 12:12:41 -0500 |
---|---|---|
committer | Colin Snover | 2017-09-03 20:58:08 -0500 |
commit | 08a717530d9f28dc39c6e98f2ed3229fc57dd11e (patch) | |
tree | a7ed4ca3eefe1f3e215b74e4701c09b437f5c4ff | |
parent | 768d698434d38809932432ca37607c01370e9363 (diff) | |
download | scummvm-rg350-08a717530d9f28dc39c6e98f2ed3229fc57dd11e.tar.gz scummvm-rg350-08a717530d9f28dc39c6e98f2ed3229fc57dd11e.tar.bz2 scummvm-rg350-08a717530d9f28dc39c6e98f2ed3229fc57dd11e.zip |
SCI32: Correct LSL7 demo GUIOs
-rw-r--r-- | engines/sci/detection_tables.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h index d4e4a4f3c4..c44d5f4c25 100644 --- a/engines/sci/detection_tables.h +++ b/engines/sci/detection_tables.h @@ -2687,14 +2687,12 @@ static const struct ADGameDescription SciGameDescriptions[] = { #undef GUIO_LSL6HIRES -// TODO: Correct GUIOs -#define GUIO_LSL7_DEMO GUIO4(GUIO_NOASPECT, \ +#define GUIO_LSL7_DEMO GUIO3(GUIO_NOASPECT, \ GUIO_NOMIDI, \ - GUIO_NOLAUNCHLOAD, \ - GAMEOPTION_ORIGINAL_SAVELOAD) -#define GUIO_LSL7 GUIO5(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ - GUIO_NOASPECT, \ + GUIO_NOLAUNCHLOAD) +#define GUIO_LSL7 GUIO5(GUIO_NOASPECT, \ GUIO_NOMIDI, \ + GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ GAMEOPTION_ORIGINAL_SAVELOAD, \ GAMEOPTION_HQ_VIDEO) |