diff options
Diffstat (limited to 'scumm/resource_v3.cpp')
-rw-r--r-- | scumm/resource_v3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v3.cpp b/scumm/resource_v3.cpp index 1a5836ec54..eea2ec334e 100644 --- a/scumm/resource_v3.cpp +++ b/scumm/resource_v3.cpp @@ -36,7 +36,7 @@ void Scumm_v3::readIndexFile() { magic = _fileHandle.readUint16LE(); if (magic != 0x0100) - warning("The magic id doesn't match (0x%X)\n", magic); + warning("The magic id doesn't match (0x%X)", magic); _numGlobalObjects = _fileHandle.readUint16LE(); _fileHandle.seek(_numGlobalObjects * 4, SEEK_CUR); |