aboutsummaryrefslogtreecommitdiff
path: root/sword1/logic.cpp
diff options
context:
space:
mode:
authorRobert Göffringmann2003-12-17 05:16:37 +0000
committerRobert Göffringmann2003-12-17 05:16:37 +0000
commit7f5df14e7d5a4b4c560fa8697994fa5b512f8971 (patch)
tree41bd53855b4a722780e787481cd7cb5fc49d391c /sword1/logic.cpp
parent6b3429c4bbfea21096ae2de520579e99bf3fd3d4 (diff)
downloadscummvm-rg350-7f5df14e7d5a4b4c560fa8697994fa5b512f8971.tar.gz
scummvm-rg350-7f5df14e7d5a4b4c560fa8697994fa5b512f8971.tar.bz2
scummvm-rg350-7f5df14e7d5a4b4c560fa8697994fa5b512f8971.zip
menu, sound and mouse fixes.
svn-id: r11701
Diffstat (limited to 'sword1/logic.cpp')
-rw-r--r--sword1/logic.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/sword1/logic.cpp b/sword1/logic.cpp
index 83f7bde9e3..360d9e0f21 100644
--- a/sword1/logic.cpp
+++ b/sword1/logic.cpp
@@ -850,7 +850,6 @@ int SwordLogic::fnFullSetFrame(BsObject *cpt, int32 id, int32 cdt, int32 spr, in
}
int SwordLogic::fnFadeDown(BsObject *cpt, int32 id, int32 speed, int32 d, int32 e, int32 f, int32 z, int32 x) {
- warning("fnFadeDown speed = %d", speed);
_screen->fadeDownPalette();
return SCRIPT_CONT;
}
@@ -1484,7 +1483,6 @@ int SwordLogic::fnGetPos(BsObject *cpt, int32 id, int32 targetId, int32 b, int32
if (target->o_status & STAT_SHRINK) {
int32 scale = (target->o_scale_a * target->o_ycoord + target->o_scale_b) / 256;
_scriptVars[RETURN_VALUE_4] = (megaSeperation * scale) / 256;
- debug(1, "fnGetPos: scaled megaSeperation = %d", _scriptVars[RETURN_VALUE_4]);
} else
_scriptVars[RETURN_VALUE_4] = megaSeperation;
return SCRIPT_CONT;