From d292c0ec55024ef95833f56300987a19e2ef4e31 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 4 Apr 2006 22:04:51 +0000 Subject: Since our debug() adds an exclamation mark at the message end, remove it in several calls to avoid duplication!!11! svn-id: r21607 --- engines/sky/compact.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sky/compact.cpp') 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; } -- cgit v1.2.3