diff options
author | Gregory Montoir | 2004-12-30 23:59:30 +0000 |
---|---|---|
committer | Gregory Montoir | 2004-12-30 23:59:30 +0000 |
commit | f06348440fd2040cb8bf57849c7e6670db91caf0 (patch) | |
tree | b241f6023bbf7ab0f631e7f020041ab54ee3f665 | |
parent | a8f58dcaccfea90fff34dddd84372132f87ecd41 (diff) | |
download | scummvm-rg350-f06348440fd2040cb8bf57849c7e6670db91caf0.tar.gz scummvm-rg350-f06348440fd2040cb8bf57849c7e6670db91caf0.tar.bz2 scummvm-rg350-f06348440fd2040cb8bf57849c7e6670db91caf0.zip |
correction for previous correction :)
svn-id: r16393
-rw-r--r-- | scumm/insane/insane_enemy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/insane/insane_enemy.cpp b/scumm/insane/insane_enemy.cpp index 79275a1d12..e64b6480e8 100644 --- a/scumm/insane/insane_enemy.cpp +++ b/scumm/insane/insane_enemy.cpp @@ -2778,7 +2778,7 @@ int32 Insane::actionEnemy(void) { if (_actor[1].x > 250) _actor[1].x--; - else + else if (_actor[1].x < 250) _actor[1].x++; if (_actor[1].x > 320) { |