diff options
author | Max Horn | 2006-09-16 12:43:18 +0000 |
---|---|---|
committer | Max Horn | 2006-09-16 12:43:18 +0000 |
commit | 61626263236a4e3b9397bd3dfd9c467a4a9a0d31 (patch) | |
tree | 02831e0c67374fbc377cdaf5d088af80b068b01a /engines | |
parent | d2af16a8173f669f5ec86f5cce4f9f5fbf389939 (diff) | |
download | scummvm-rg350-61626263236a4e3b9397bd3dfd9c467a4a9a0d31.tar.gz scummvm-rg350-61626263236a4e3b9397bd3dfd9c467a4a9a0d31.tar.bz2 scummvm-rg350-61626263236a4e3b9397bd3dfd9c467a4a9a0d31.zip |
cleanup; remove check whether _costume is valid, as that is already done by getResourceAddress
svn-id: r23884
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/actor.cpp | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index c08d47e076..74677add49 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -1606,7 +1606,7 @@ void Actor::startWalkActor(int destX, int destY, int dir) { AdjustBoxResult abr; if (!isInCurrentRoom() && _vm->_game.version >= 7) { - debug(0, "startWalkActor: attempting to walk actor %d who is not in this room", _number); + debugC(DEBUG_ACTORS, "startWalkActor: attempting to walk actor %d who is not in this room", _number); return; } @@ -1929,7 +1929,7 @@ void Actor::walkActorOld() { byte *Actor::getActorName() { byte *ptr = _vm->getResourceAddress(rtActorName, _number); if (ptr == NULL) { - debug(0, "Failed to find name of actor %d", _number); + debugC(DEBUG_ACTORS, "Failed to find name of actor %d", _number); } return ptr; } @@ -1951,13 +1951,13 @@ void Actor::remapActorPaletteColor(int color, int new_color) { akos = _vm->getResourceAddress(rtCostume, _costume); if (!akos) { - debug(0, "Can't remap actor %d, costume %d not found", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPaletteColor: Can't remap actor %d, costume %d not found", _number, _costume); return; } akpl = _vm->findResourceData(MKID_BE('AKPL'), akos); if (!akpl) { - debug(0, "Can't remap actor %d, costume %d doesn't contain an AKPL block", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPaletteColor: Can't remap actor %d, costume %d doesn't contain an AKPL block", _number, _costume); return; } @@ -1980,22 +1980,19 @@ void Actor::remapActorPalette(int r_fact, int g_fact, int b_fact, int threshold) byte akpl_color; if (!isInCurrentRoom()) { - debugC(DEBUG_ACTORS, "Remap actor %d not in current room", _number); - return; - } else if (_costume < 1 || _costume >= _vm->_numCostumes - 1) { - debugC(DEBUG_ACTORS, "Remap actor %d invalid costume %d", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPalette: Actor %d not in current room", _number); return; } akos = _vm->getResourceAddress(rtCostume, _costume); if (!akos) { - debug(0, "Can't remap actor %d, costume %d not found", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPalette: Can't remap actor %d, costume %d not found", _number, _costume); return; } akpl = _vm->findResourceData(MKID_BE('AKPL'), akos); if (!akpl) { - debug(0, "Can't remap actor %d, costume %d doesn't contain an AKPL block", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPalette: Can't remap actor %d, costume %d doesn't contain an AKPL block", _number, _costume); return; } @@ -2005,7 +2002,7 @@ void Actor::remapActorPalette(int r_fact, int g_fact, int b_fact, int threshold) rgbs = _vm->findResourceData(MKID_BE('RGBS'), akos); if (!rgbs) { - debugC(DEBUG_ACTORS, "Can't remap actor %d costume %d doesn't contain an RGB block", _number, _costume); + debugC(DEBUG_ACTORS, "Actor::remapActorPalette: Can't remap actor %d costume %d doesn't contain an RGB block", _number, _costume); return; } |