diff options
author | Gregory Montoir | 2003-11-09 21:24:23 +0000 |
---|---|---|
committer | Gregory Montoir | 2003-11-09 21:24:23 +0000 |
commit | 1b6e9a9b0099774efb1a80baf29275cca1075ebe (patch) | |
tree | c74d044d8845c6f629ade454650a9cea6b15491f | |
parent | a7aac363414c980dd4b27f5703890d0dea1caefc (diff) | |
download | scummvm-rg350-1b6e9a9b0099774efb1a80baf29275cca1075ebe.tar.gz scummvm-rg350-1b6e9a9b0099774efb1a80baf29275cca1075ebe.tar.bz2 scummvm-rg350-1b6e9a9b0099774efb1a80baf29275cca1075ebe.zip |
forgot to update comment
svn-id: r11229
-rw-r--r-- | queen/cutaway.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp index f5ff6dc776..24066ea158 100644 --- a/queen/cutaway.cpp +++ b/queen/cutaway.cpp @@ -1053,7 +1053,7 @@ byte *Cutaway::handleAnimation(byte *ptr, CutawayObject &object) { bob->y = objAnim[i].cy; } - // Only flip if we are not moving and it is not a person object + // Only flip if we are not moving or it is not a person object if (!(objAnim[i].mx || objAnim[i].my) || !(objAnim[i].object > 0 && objAnim[i].object < 4)) bob->xflip = objAnim[i].flip; |