wlof / gameoflife

A simple Python implementation of Conway's Game of Life using the curses library.
MIT License
3 stars 0 forks source link

On Windows, game doesn't catch +/- numpad keys #8

Closed wlof closed 9 years ago

wlof commented 9 years ago

This works on Linux / Cygwin, so I guess it's a problem with curses. Need to investigate to see if a workaround is possible.

wlof commented 9 years ago

Found the keycodes used in Windows: + is 465, - is 464.

Corrected in 0.3.2.