diff options
author | Max Horn | 2002-05-23 00:45:59 +0000 |
---|---|---|
committer | Max Horn | 2002-05-23 00:45:59 +0000 |
commit | de99ad11b6b57f01c80162f1b5e684f66cce81f0 (patch) | |
tree | 661b74b5b051ce289ae7c7b9be6fbcd475072dbe | |
parent | 8fd03ae929e06355a89ffbd10b8bbf06b455e782 (diff) | |
download | scummvm-rg350-de99ad11b6b57f01c80162f1b5e684f66cce81f0.tar.gz scummvm-rg350-de99ad11b6b57f01c80162f1b5e684f66cce81f0.tar.bz2 scummvm-rg350-de99ad11b6b57f01c80162f1b5e684f66cce81f0.zip |
removed/disabled debug code
svn-id: r4377
-rw-r--r-- | actor.cpp | 4 | ||||
-rw-r--r-- | resource.cpp | 4 |
2 files changed, 2 insertions, 6 deletions
@@ -652,8 +652,6 @@ void Actor::hideActor() if (!visible) return; - debug(1, "hideActor %d", (int)number); - if (moving) { startAnimActor(standFrame); moving = 0; @@ -669,8 +667,6 @@ void Actor::showActor() if (_scumm->_currentRoom == 0 || visible) return; - debug(1, "showActor %d", (int)number); - adjustActorPos(); _scumm->ensureResourceLoaded(rtCostume, costume); diff --git a/resource.cpp b/resource.cpp index 90ade9e0fc..d94e80e24b 100644 --- a/resource.cpp +++ b/resource.cpp @@ -557,7 +557,7 @@ int Scumm::readSoundResource(int type, int idx) basetag = fileReadDword(); total_size = fileReadDwordBE(); - debug(1, " basetag: %c%c%c%c, total_size=%d", + debug(8, " basetag: %c%c%c%c, total_size=%d", (char)((basetag >> 24) & 0xff), (char)((basetag >> 16) & 0xff), (char)((basetag >> 8) & 0xff), @@ -602,7 +602,7 @@ int Scumm::readSoundResource(int type, int idx) break; } - debug(1, " tag: %c%c%c%c, total_size=%d, pri=%d", + debug(8, " tag: %c%c%c%c, total_size=%d, pri=%d", (char)((tag >> 24) & 0xff), (char)((tag >> 16) & 0xff), (char)((tag >> 8) & 0xff), |