diff options
| author | Jonathan Gray | 2003-04-22 11:34:46 +0000 |
|---|---|---|
| committer | Jonathan Gray | 2003-04-22 11:34:46 +0000 |
| commit | d60bc445874cba6a4cb7ad4ca67b2a3ba4d0df4a (patch) | |
| tree | 6c1e1b6e1c40c732863405f443e3fe0d954f0234 /scumm/scummvm.cpp | |
| parent | a8dfcb4edad9ae2db35a85f6f9c7416d14d74931 (diff) | |
| download | scummvm-rg350-d60bc445874cba6a4cb7ad4ca67b2a3ba4d0df4a.tar.gz scummvm-rg350-d60bc445874cba6a4cb7ad4ca67b2a3ba4d0df4a.tar.bz2 scummvm-rg350-d60bc445874cba6a4cb7ad4ca67b2a3ba4d0df4a.zip | |
add preliminary bits for making xmi music in humongous games work, just need someone to do something with the pointer now :)
svn-id: r7072
Diffstat (limited to 'scumm/scummvm.cpp')
| -rw-r--r-- | scumm/scummvm.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 42695b9fba..80a5bd03c2 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -460,7 +460,10 @@ void Scumm::initScummVars() { _vars[VAR_VIDEOMODE] = 0x13; _vars[VAR_HEAPSPACE] = 1400; _vars[VAR_MOUSEPRESENT] = true; // FIXME - used to be 0, but that seems odd?!? - _vars[VAR_SOUNDPARAM] = 0; +// if (_features & GF_HUMONGOUS) // FIXME uncomment when XMI support is added +// _vars[VAR_SOUNDPARAM] = 1; // soundblaster for music +// else + _vars[VAR_SOUNDPARAM] = 0; _vars[VAR_SOUNDPARAM2] = 0; _vars[VAR_SOUNDPARAM3] = 0; |
