diff options
author | Travis Howell | 2003-05-18 14:03:47 +0000 |
---|---|---|
committer | Travis Howell | 2003-05-18 14:03:47 +0000 |
commit | 2cd2cc83b299313c0a4f92758381382845058ba0 (patch) | |
tree | 267397b58277240fae59d7abda1b15f84b1389f1 | |
parent | cf54a636396002c268404b8ba4f11a84fc99a127 (diff) | |
download | scummvm-rg350-2cd2cc83b299313c0a4f92758381382845058ba0.tar.gz scummvm-rg350-2cd2cc83b299313c0a4f92758381382845058ba0.tar.bz2 scummvm-rg350-2cd2cc83b299313c0a4f92758381382845058ba0.zip |
adlib fix for Simon games from Jamieson630
svn-id: r7633
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 42e80d3fcf..22b89200af 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -181,7 +181,7 @@ SimonState::SimonState(GameDetector *detector, OSystem *syst) /* Setup midi driver */ if (!driver) - driver = MidiDriver_NULL_create(); + driver = MidiDriver_ADLIB_Create(); midi.set_driver(driver); _game = (byte)detector->_features; |