aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v3.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-08-14 01:41:52 +0000
committerTravis Howell2005-08-14 01:41:52 +0000
commita820400f8c134a9119b5a2c5b68d614345322f45 (patch)
treecdb482abd5bd94d8d27261e96d7e2977d0e533c5 /scumm/resource_v3.cpp
parent3a86eb8d2e90999f5e646d94d39e427a04bebe96 (diff)
downloadscummvm-rg350-a820400f8c134a9119b5a2c5b68d614345322f45.tar.gz
scummvm-rg350-a820400f8c134a9119b5a2c5b68d614345322f45.tar.bz2
scummvm-rg350-a820400f8c134a9119b5a2c5b68d614345322f45.zip
Replace warnings with debug, errors or printfs:
-To catch any missing cases/functions used. -To prevent users reporting warnings as bugs svn-id: r18681
Diffstat (limited to 'scumm/resource_v3.cpp')
-rw-r--r--scumm/resource_v3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v3.cpp b/scumm/resource_v3.cpp
index f143992ffa..64c38246c0 100644
--- a/scumm/resource_v3.cpp
+++ b/scumm/resource_v3.cpp
@@ -65,7 +65,7 @@ void ScummEngine_v3old::readIndexFile() {
magic = _fileHandle->readUint16LE();
if (magic != 0x0100)
- warning("The magic id doesn't match (0x%X)", magic);
+ error("The magic id doesn't match (0x%X)", magic);
_numGlobalObjects = _fileHandle->readUint16LE();
_fileHandle->seek(_numGlobalObjects * 4, SEEK_CUR);