diff options
author | Eugene Sandulenko | 2006-04-04 22:04:51 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-04-04 22:04:51 +0000 |
commit | d292c0ec55024ef95833f56300987a19e2ef4e31 (patch) | |
tree | 2c1f2147011d0059d74363816d63d9be7376e2d9 /engines/scumm | |
parent | f5c4634ecdd1832146fc47b796dcb7475b5c4498 (diff) | |
download | scummvm-rg350-d292c0ec55024ef95833f56300987a19e2ef4e31.tar.gz scummvm-rg350-d292c0ec55024ef95833f56300987a19e2ef4e31.tar.bz2 scummvm-rg350-d292c0ec55024ef95833f56300987a19e2ef4e31.zip |
Since our debug() adds an exclamation mark at the message end, remove
it in several calls to avoid duplication!!11!
svn-id: r21607
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/gfx.cpp | 2 | ||||
-rw-r--r-- | engines/scumm/imuse/imuse.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp index 53a0cbad96..018895d546 100644 --- a/engines/scumm/gfx.cpp +++ b/engines/scumm/gfx.cpp @@ -2183,7 +2183,7 @@ void Gdi::decodeNESGfx(const byte *room) { } _NES.hasmask = true; if (mask != 1) - debug(0,"NES room %i has irregular mask count %i!",_vm->_currentRoom,mask); + debug(0,"NES room %i has irregular mask count %i",_vm->_currentRoom,mask); int mwidth = *mdata++; for (i = 0; i < 16; i++) { n = 0; diff --git a/engines/scumm/imuse/imuse.cpp b/engines/scumm/imuse/imuse.cpp index bab9d5dfdc..3645144a0a 100644 --- a/engines/scumm/imuse/imuse.cpp +++ b/engines/scumm/imuse/imuse.cpp @@ -79,7 +79,7 @@ byte *IMuseInternal::findStartOfSound(int sound) { ptr = _base_sounds[sound]; if (ptr == NULL) { - debug(1, "IMuseInternal::findStartOfSound(): Sound %d doesn't exist!", sound); + debug(1, "IMuseInternal::findStartOfSound(): Sound %d doesn't exist", sound); return NULL; } @@ -103,7 +103,7 @@ byte *IMuseInternal::findStartOfSound(int sound) { ++pos; // We could probably iterate more intelligently } - debug(3, "IMuseInternal::findStartOfSound(): Failed to align on sound %d!", sound); + debug(3, "IMuseInternal::findStartOfSound(): Failed to align on sound %d", sound); return 0; } @@ -578,7 +578,7 @@ bool IMuseInternal::startSound_internal (int sound) { void *ptr = findStartOfSound(sound); if (!ptr) { - debug(2, "IMuseInternal::startSound(): Couldn't find sound %d!", sound); + debug(2, "IMuseInternal::startSound(): Couldn't find sound %d", sound); return false; } |