diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-04-02 22:23:40 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-04-02 22:23:40 +0200 |
commit | 958b4764994eb874ef0382f86f6dfe6ee5db2cf9 (patch) | |
tree | 8f095fba6f14aaa6ee3cd6b32e80207494e94015 | |
parent | 74befadb1457ccb955d2dfa3c9fb44653e4986f9 (diff) | |
download | plan9front-958b4764994eb874ef0382f86f6dfe6ee5db2cf9.tar.xz |
games/glendy: your complication had a complication (god damn it kemal)
-rw-r--r-- | sys/src/games/glendy.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/src/games/glendy.c b/sys/src/games/glendy.c index bc95017ae..44ba03ebe 100644 --- a/sys/src/games/glendy.c +++ b/sys/src/games/glendy.c @@ -45,17 +45,17 @@ Image *won; char *mbuttons[] = { - "easy", - "medium", - "hard", + "Easy", + "Medium", + "Hard", 0 }; char *rbuttons[] = { - "new", - "reset", - "exit", + "New", + "Reset", + "Exit", 0 }; @@ -386,7 +386,7 @@ nextglenda(void) nextdir = (nrand(++count) == 0)?dir:nextdir; } } - if(min <= 100) + if(min < 100 || min == 999) domove(nextdir, p.x, p.y); else finished = Won; |