summary refs log tree commit diff homepage
path: root/freecell.c (follow)
Commit message (Collapse)AuthorAge
* Retry getch() after ERRJune McEnroe2021-10-15
| | | | | | In the version of ncurses in OpenBSD, the SIGWINCH handler installed by enabling keypad causes the read() inside getch() to fail with EINTR, which getch() doesn't handle, itself returning ERR.
* Handle KEY_BACKSPACE in freecellJune McEnroe2021-09-30
|
* Add mouse support to freecellJune McEnroe2021-09-28
| | | | Works much like WEP FreeCell.
* Draw foundations in reverse orderJune McEnroe2021-04-19
|
* Only use cells for moveColumnJune McEnroe2021-04-19
| | | | | | So long as the move queuer doesn't use empty tableau stacks correctly, it shouldn't use them at all. This way it's easier to do the correct moves manually.
* Add freecellJune McEnroe2021-04-18