aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2011-08-26 20:06:22 +1000
committerPaul Gilbert2011-08-26 20:06:22 +1000
commitca7b85bfd8fd868b6675abf57b7a23ad1dc70d3e (patch)
treead902bcfe8965ce2efafd2d9e802ea82e709396a /engines
parent5dd26b9a369690ef24bb8613c27c339c931d8de0 (diff)
downloadscummvm-rg350-ca7b85bfd8fd868b6675abf57b7a23ad1dc70d3e.tar.gz
scummvm-rg350-ca7b85bfd8fd868b6675abf57b7a23ad1dc70d3e.tar.bz2
scummvm-rg350-ca7b85bfd8fd868b6675abf57b7a23ad1dc70d3e.zip
CGE: Fix compiler warnings
Diffstat (limited to 'engines')
-rw-r--r--engines/tsage/blue_force/blueforce_scenes3.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tsage/blue_force/blueforce_scenes3.cpp b/engines/tsage/blue_force/blueforce_scenes3.cpp
index 696945b37f..e49037abf9 100644
--- a/engines/tsage/blue_force/blueforce_scenes3.cpp
+++ b/engines/tsage/blue_force/blueforce_scenes3.cpp
@@ -101,8 +101,8 @@ void Scene300::Action1::signal() {
setDelay(1);
break;
case 2: {
- Common::Point pt(BF_GLOBALS._player._position.x - 8, BF_GLOBALS._player._position.y);
- ADD_PLAYER_MOVER_THIS(BF_GLOBALS._player, pt.x, pt.y);
+ ADD_PLAYER_MOVER_THIS(BF_GLOBALS._player, BF_GLOBALS._player._position.x - 8,
+ BF_GLOBALS._player._position.y);
break;
}
case 3:
@@ -125,8 +125,8 @@ void Scene300::Action2::signal() {
setDelay(1);
break;
case 2: {
- Common::Point pt(BF_GLOBALS._player._position.x + 8, BF_GLOBALS._player._position.y);
- ADD_MOVER(BF_GLOBALS._player, pt.x, pt.y);
+ ADD_MOVER(BF_GLOBALS._player, BF_GLOBALS._player._position.x + 8,
+ BF_GLOBALS._player._position.y);
break;
}
case 3: