diff options
author | Colin Snover | 2017-08-05 12:13:25 -0500 |
---|---|---|
committer | Colin Snover | 2017-09-03 20:58:08 -0500 |
commit | 439a026844d826761338aee31a2d0db177890e54 (patch) | |
tree | 20e6f488380bf9904966e55881f81ff27764785c | |
parent | 08a717530d9f28dc39c6e98f2ed3229fc57dd11e (diff) | |
download | scummvm-rg350-439a026844d826761338aee31a2d0db177890e54.tar.gz scummvm-rg350-439a026844d826761338aee31a2d0db177890e54.tar.bz2 scummvm-rg350-439a026844d826761338aee31a2d0db177890e54.zip |
SCI32: Fix Lighthouse GUIOs
-rw-r--r-- | engines/sci/detection_tables.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h index c44d5f4c25..3ee4459a5e 100644 --- a/engines/sci/detection_tables.h +++ b/engines/sci/detection_tables.h @@ -2747,12 +2747,18 @@ static const struct ADGameDescription SciGameDescriptions[] = { #undef GUIO_LSL7_DEMO #undef GUIO_LSL7 -// TODO: Correct GUIOs -#define GUIO_LIGHTHOUSE_DEMO GUIO3(GUIO_NOSPEECH, \ - GUIO_NOASPECT, \ - GAMEOPTION_ORIGINAL_SAVELOAD) -#define GUIO_LIGHTHOUSE GUIO4(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ +#define GUIO_LIGHTHOUSE_DEMO GUIO6(GUIO_NOSPEECH, \ + GUIO_NOMUSIC, \ GUIO_NOASPECT, \ + GUIO_NOMIDI, \ + GUIO_NOLAUNCHLOAD, \ + GAMEOPTION_HQ_VIDEO) +#define GUIO_LIGHTHOUSE GUIO8(GUIO_NOASPECT, \ + GUIO_NOMIDI, \ + GUIO_NOSUBTITLES, \ + GUIO_LINKMUSICTOSFX, \ + GUIO_LINKSPEECHTOSFX, \ + GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ GAMEOPTION_ORIGINAL_SAVELOAD, \ GAMEOPTION_HQ_VIDEO) |