aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/drivers/midi.cpp
diff options
context:
space:
mode:
authormd52011-02-27 16:48:53 +0200
committermd52011-02-27 16:48:53 +0200
commit72f65b3946278661db95fc02511444ff1658a3bf (patch)
tree02923cbfb141a8c8af3b24882cc4df2ce547b666 /engines/sci/sound/drivers/midi.cpp
parent65b9e1784dff7237ec77b7391b26631b0d9b3d6e (diff)
downloadscummvm-rg350-72f65b3946278661db95fc02511444ff1658a3bf.tar.gz
scummvm-rg350-72f65b3946278661db95fc02511444ff1658a3bf.tar.bz2
scummvm-rg350-72f65b3946278661db95fc02511444ff1658a3bf.zip
SCI: Renamed SCI_VERSION_1_EGA to SCI_VERSION_1_EGA_ONLY
This renaming allows us to better distinguish that this version is for games that only had an EGA version, and avoid confusion with newer SCI1 game releases with EGA graphics (e.g. KQ5 EGA). The only game with this SCI version is QFG2, a SCI1 EGA game with a parser. Also, added some games for each SCI version.
Diffstat (limited to 'engines/sci/sound/drivers/midi.cpp')
-rw-r--r--engines/sci/sound/drivers/midi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/drivers/midi.cpp b/engines/sci/sound/drivers/midi.cpp
index c350d3826f..65ccaecc6f 100644
--- a/engines/sci/sound/drivers/midi.cpp
+++ b/engines/sci/sound/drivers/midi.cpp
@@ -955,7 +955,7 @@ int MidiPlayer_Midi::open(ResourceManager *resMan) {
// TODO: The MT-32 <-> GM mapping hasn't been worked on for SCI1 games. Throw
// a warning to the user
- if (getSciVersion() >= SCI_VERSION_1_EGA)
+ if (getSciVersion() >= SCI_VERSION_1_EGA_ONLY)
warning("The automatic mapping for General MIDI hasn't been worked on for "
"SCI1 games. Music might sound wrong or broken. Please choose another "
"music driver for this game (e.g. Adlib or MT-32) if you are "