whitespaces

svn-id: r12998
This commit is contained in:
Max Horn 2004-02-22 21:02:06 +00:00
parent cfd248eeb9
commit 9d5dace366
2 changed files with 2 additions and 2 deletions

View File

@ -1304,7 +1304,7 @@ void CharsetRendererNut::printChar(int chr) {
_left += width;
if (_str.right < shadow.right )
if (_str.right < shadow.right)
_str.right = shadow.right;
if (_str.bottom < shadow.bottom)

View File

@ -400,7 +400,7 @@ bool ScummDebugger::Cmd_Actor(int argc, const char **argv) {
if (value >= _vm->res.num[rtCostume])
DebugPrintf("Costume not changed as %d exceeds max of %d\n", value, _vm->res.num[rtCostume]);
else {
a->setActorCostume( value );
a->setActorCostume(value);
_vm->_fullRedraw = 1;
DebugPrintf("Actor[%d].costume = %d\n", actnum, a->costume);
}