aboutsummaryrefslogtreecommitdiff
path: root/engines/sky/compact.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-04 22:04:51 +0000
committerEugene Sandulenko2006-04-04 22:04:51 +0000
commitd292c0ec55024ef95833f56300987a19e2ef4e31 (patch)
tree2c1f2147011d0059d74363816d63d9be7376e2d9 /engines/sky/compact.cpp
parentf5c4634ecdd1832146fc47b796dcb7475b5c4498 (diff)
downloadscummvm-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/sky/compact.cpp')
-rw-r--r--engines/sky/compact.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sky/compact.cpp b/engines/sky/compact.cpp
index c629894ed3..9db5808fa1 100644
--- a/engines/sky/compact.cpp
+++ b/engines/sky/compact.cpp
@@ -428,7 +428,7 @@ uint16 SkyCompact::findCptId(void *cpt) {
if (_compacts[listCnt][elemCnt] == cpt)
return (listCnt << 12) | elemCnt;
// not found
- debug(1, "Id for Compact %p wasn't found!", cpt);
+ debug(1, "Id for Compact %p wasn't found", cpt);
return 0;
}
@@ -439,7 +439,7 @@ uint16 SkyCompact::findCptId(const char *cptName) {
if (scumm_stricmp(cptName, _cptNames[listCnt][elemCnt]) == 0)
return (listCnt << 12) | elemCnt;
// not found
- debug(1, "Id for Compact %s wasn't found!", cptName);
+ debug(1, "Id for Compact %s wasn't found", cptName);
return 0;
}