aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-09-06 03:34:19 +0000
committerTravis Howell2003-09-06 03:34:19 +0000
commit0780f7e51953e44fbf63e369005c3aa66f2202dd (patch)
tree2bcdb63939e0adbd49d93596d52f98f356ae6d3a /scumm/resource_v2.cpp
parent40a5138c577ae88d5e74a63921c3855c80460d95 (diff)
downloadscummvm-rg350-0780f7e51953e44fbf63e369005c3aa66f2202dd.tar.gz
scummvm-rg350-0780f7e51953e44fbf63e369005c3aa66f2202dd.tar.bz2
scummvm-rg350-0780f7e51953e44fbf63e369005c3aa66f2202dd.zip
Change version message to debug, to match other games.
svn-id: r10034
Diffstat (limited to 'scumm/resource_v2.cpp')
-rw-r--r--scumm/resource_v2.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp
index cd62e006b3..4cf8ea4085 100644
--- a/scumm/resource_v2.cpp
+++ b/scumm/resource_v2.cpp
@@ -31,7 +31,6 @@ 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) && !(_features & GF_NES))
_playerV2 = new Player_V1(this);
@@ -41,7 +40,6 @@ 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);
@@ -157,18 +155,18 @@ void Scumm_v2::readIndexFile() {
switch(magic) {
case 0x0100:
- warning("Enhanced V2 game detected");
+ debug(1,"Enhanced V2 game detected");
readEnhancedIndexFile();
break;
case 0x0A31:
- warning("Classic V1 game detected");
+ debug(1,"Classic V1 game detected");
_version = 1;
readClassicIndexFile();
break;
case 0x4643:
if (!(_features & GF_NES))
- error("use maniacnes target");
- warning("NES V1 game detected");
+ error("Use maniacnes target");
+ debug(1,"NES V1 game detected");
_version = 1;
readClassicIndexFile();
break;