summaryrefslogtreecommitdiffstats
path: root/mbbsd/reversi.c
diff options
context:
space:
mode:
authorscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-06-01 23:10:41 +0800
committerscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-06-01 23:10:41 +0800
commite9e709d0352f58f5855f4e7f37204a443926c767 (patch)
treee8ec155b2e666864313d164679c16b50fd8abae2 /mbbsd/reversi.c
parent61f4d7014333e7901e090228fa3009877ba4802c (diff)
downloadpttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar.gz
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar.bz2
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar.lz
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar.xz
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.tar.zst
pttbbs-e9e709d0352f58f5855f4e7f37204a443926c767.zip
Reversi show current # of chess in chess instead of "black" or "white"
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3526 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/reversi.c')
-rw-r--r--mbbsd/reversi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/reversi.c b/mbbsd/reversi.c
index c396ef0a..f32689c5 100644
--- a/mbbsd/reversi.c
+++ b/mbbsd/reversi.c
@@ -176,12 +176,12 @@ reversi_drawline(const ChessInfo* info, int line){
else if (line == 19)
outs("¢|¢w¢r¢w¢r¢w¢r¢w¢r¢w¢r¢w¢r¢w¢r¢w¢}");
else if (line == 20)
- prints(" (¶Â) %-15s%2d%*s",
+ prints(" (" BLACK_CHESS ") %-15s%2d%*s",
info->myturn ? info->user1.userid : info->user2.userid,
((reversi_tag_t*)info->tag)->number[COLOR_TO_TURN(BLACK)],
34 - 24, "");
else if (line == 21)
- prints(" (¥Õ) %-15s%2d%*s",
+ prints(" (" WHITE_CHESS ") %-15s%2d%*s",
info->myturn ? info->user2.userid : info->user1.userid,
((reversi_tag_t*)info->tag)->number[COLOR_TO_TURN(WHITE)],
34 - 24, "");