aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authoruruk2014-02-20 23:28:34 +0100
committeruruk2014-02-20 23:28:34 +0100
commitacdfcb527294a1b44f647fe4c91115ee0918a6f6 (patch)
treefe4794e4f92ff25e05b39ce0bb029825acc56630 /engines
parenta3d4908e53d812cfcc2fd93fbb067345afa577c6 (diff)
downloadscummvm-rg350-acdfcb527294a1b44f647fe4c91115ee0918a6f6.tar.gz
scummvm-rg350-acdfcb527294a1b44f647fe4c91115ee0918a6f6.tar.bz2
scummvm-rg350-acdfcb527294a1b44f647fe4c91115ee0918a6f6.zip
AVALANCHE: Repair ShootEmUp::plotThem().
Diffstat (limited to 'engines')
-rw-r--r--engines/avalanche/shootemup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/shootemup.cpp b/engines/avalanche/shootemup.cpp
index 02d65772ae..baf51a2ebd 100644
--- a/engines/avalanche/shootemup.cpp
+++ b/engines/avalanche/shootemup.cpp
@@ -200,7 +200,7 @@ void ShootEmUp::plotThem() {
if (_sprites[i]._timeout > 0) {
_sprites[i]._timeout--;
if (_sprites[i]._timeout == 0)
- _sprites[i]._y = kFlag;
+ _sprites[i]._x = kFlag;
}
}
}