Skip to content

Commit

Permalink
Fix (Python3) integer division in firebirds sample
Browse files Browse the repository at this point in the history
  • Loading branch information
scotty007 committed Sep 24, 2020
1 parent ed87d61 commit 843ad84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/firebirds/firebirds.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def __updateImages(self):
y = s % 10 * -34
if img.y != y:
avg.LinearAnim(img, 'y', 250, img.y, y).start()
s /= 10
s //= 10


class GunControl(avg.DivNode):
Expand Down

0 comments on commit 843ad84

Please sign in to comment.