commit | 949f71b446723cd05404e3f0e9c0a793b9b99001 | [log] [tgz] |
---|---|---|
author | Andrew M. Kuchling <amk@amk.ca> | Sat Sep 13 01:22:08 2008 +0000 |
committer | Andrew M. Kuchling <amk@amk.ca> | Sat Sep 13 01:22:08 2008 +0000 |
tree | a2d8156064cc6f877ef2750a363ec79e3da8a9b6 | |
parent | dfd6b86d6ba126f3eeefee861f8ebbb3c8df46d5 [diff] [blame] |
#687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.)
diff --git a/Demo/curses/life.py b/Demo/curses/life.py index a5bbed2..98fb62e 100755 --- a/Demo/curses/life.py +++ b/Demo/curses/life.py
@@ -158,7 +158,7 @@ board.display(update_board=False) # xpos, ypos are the cursor's position - xpos, ypos = board.X/2, board.Y/2 + xpos, ypos = board.X//2, board.Y//2 # Main loop: while (1):