aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
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
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')
-rw-r--r--engines/sky/compact.cpp4
-rw-r--r--engines/sky/disk.cpp2
2 files changed, 3 insertions, 3 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;
}
diff --git a/engines/sky/disk.cpp b/engines/sky/disk.cpp
index 451b4d9058..f92e5dc990 100644
--- a/engines/sky/disk.cpp
+++ b/engines/sky/disk.cpp
@@ -191,7 +191,7 @@ uint8 *Disk::getFileInfo(uint16 fileNr) {
for (i = 0; i < _dinnerTableEntries; i++) {
if (READ_LE_UINT16(dnrTbl16Ptr) == fileNr) {
- debug(2, "file %d found!", fileNr);
+ debug(2, "file %d found", fileNr);
return (uint8 *)dnrTbl16Ptr;
}
dnrTbl16Ptr += 4;