diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-01-29 17:33:24 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-01-29 17:33:24 +0800 |
commit | 3f006f6561f3d31a7cff82294ece46df6014e08a (patch) | |
tree | 16f0a6c3e4a76b0eb444f5d4d878b37faa009307 | |
parent | 1c4e5d5ba7436a9d23368712d6a24dc84de7cd84 (diff) | |
download | pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar.gz pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar.bz2 pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar.lz pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar.xz pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.tar.zst pttbbs-3f006f6561f3d31a7cff82294ece46df6014e08a.zip |
redraw help bar to avoid overrided by water ball.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2443 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/gomo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/gomo.c b/mbbsd/gomo.c index 1a9c7478..5d911671 100644 --- a/mbbsd/gomo.c +++ b/mbbsd/gomo.c @@ -477,7 +477,6 @@ gomoku(int fd) prints("%s時間還剩%d:%02d\n", my->turn ? "你的" : "對方", MAX_TIME / 60, MAX_TIME % 60); } - outmsg("\033[1;33;42m 下五子棋 \033[;31;47m (←↑↓→)\033[30m移動 \033[31m(空白鍵/ENTER)\033[30m下子 \033[31m(q)\033[30m投降 \033[31m(p)\033[30m和棋 \033[31m(u)\033[30m悔棋 \033[m"); cuser.five_lose++; /* 一進來先加一場敗場, 贏了後再扣回去, 避免快輸了惡意斷線 */ @@ -496,6 +495,8 @@ gomoku(int fd) move(13, 40); outs(my->turn ? "輪到自己下了!" : "等待對方下子.."); redoln(); + + outmsg("\033[1;33;42m 下五子棋 \033[;31;47m (←↑↓→)\033[30m移動 \033[31m(空白鍵/ENTER)\033[30m下子 \033[31m(q)\033[30m投降 \033[31m(p)\033[30m和棋 \033[31m(u)\033[30m悔棋 \033[m"); scr_need_redraw = 0; } if (lastcount != tick - now) { |