diff options
-rw-r--r-- | queen/logic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp index 5051d813bd..9fadd4f13e 100644 --- a/queen/logic.cpp +++ b/queen/logic.cpp @@ -1778,7 +1778,7 @@ void Logic::asmScaleBlimp() { int16 y = bob->y; while (bob->x > 150) { bob->x = x * 256 / z + 150; - bob->x = y * 256 / z + 112; + bob->y = y * 256 / z + 112; bob->scale = 100 * 256 / z; ++z; |