diff options
-rw-r--r-- | queen/walk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/walk.cpp b/queen/walk.cpp index 91127f5091..078d52d2d3 100644 --- a/queen/walk.cpp +++ b/queen/walk.cpp @@ -285,7 +285,7 @@ void Walk::animatePerson(const MovePersonData *mpd, uint16 image, uint16 bobNum, else { pbs->speed = scale * (mpd->moveSpeed / 2) / 100; } - if (pbs->speed < 1) { + if (pbs->speed == 0) { pbs->speed = 1; } // XXX if (cutQuit) |