aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-08-14 02:32:40 +0000
committerTravis Howell2003-08-14 02:32:40 +0000
commit53eec9269589125e8612b113bbb812858a1bd62a (patch)
tree698633a055dbc82953b91a3571bbd1dbec3d92c4 /scumm
parent90f77843ad0de45bfae377afab58de0cccb4c3b4 (diff)
downloadscummvm-rg350-53eec9269589125e8612b113bbb812858a1bd62a.tar.gz
scummvm-rg350-53eec9269589125e8612b113bbb812858a1bd62a.tar.bz2
scummvm-rg350-53eec9269589125e8612b113bbb812858a1bd62a.zip
Add fixmes
svn-id: r9677
Diffstat (limited to 'scumm')
-rw-r--r--scumm/resource_v2.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp
index 5ef6fb98b0..7576803634 100644
--- a/scumm/resource_v2.cpp
+++ b/scumm/resource_v2.cpp
@@ -31,6 +31,7 @@ void Scumm_v2::readClassicIndexFile() {
int i;
if (_gameId == GID_MANIAC) {
+ //FIXME the music driver was previously been set before detection of classic/enchanced version.
if (!(_features & GF_AMIGA))
_playerV2 = new Player_V1(this);
@@ -40,6 +41,7 @@ void Scumm_v2::readClassicIndexFile() {
_numScripts = 200;
_numSounds = 100;
} else if (_gameId == GID_ZAK) {
+ //FIXME the music driver was previously been set before detection of classic/enchanced version.
if (!(_features & GF_AMIGA))
_playerV2 = new Player_V2(this);
@@ -106,6 +108,7 @@ void Scumm_v2::readClassicIndexFile() {
void Scumm_v2::readEnhancedIndexFile() {
+ //FIXME the music driver was previously been set before detection of classic/enchanced version.
if (!(_features & GF_AMIGA)) {
_playerV2 = new Player_V2(this);
if (_midiDriver == MD_PCSPK)