diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-10-09 03:44:29 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-10-09 03:44:29 +0800 |
commit | b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32 (patch) | |
tree | 26322fef26cec96722046dd780898b30331151b7 | |
parent | 562481a4082d411a19b1468ba6b5bd5a1da7be6f (diff) | |
download | pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar.gz pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar.bz2 pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar.lz pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar.xz pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.tar.zst pttbbs-b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32.zip |
display one more digit of game record
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2232 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/talk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c index a85e3d75..70faf745 100644 --- a/mbbsd/talk.c +++ b/mbbsd/talk.c @@ -1630,16 +1630,16 @@ descript(int show_mode, userinfo_t * uentp, time_t diff) : "*"); case 2: snprintf(description, sizeof(description), - "%3d/%3d/%3d", uentp->five_win, + "%4d/%4d/%4d", uentp->five_win, uentp->five_lose, uentp->five_tie); return description; case 3: #ifdef DEBUG snprintf(description, sizeof(description), - "%d", uentp->chess_elo_rating); + "%4d", uentp->chess_elo_rating); #else snprintf(description, sizeof(description), - "%3d/%3d/%3d", uentp->chc_win, + "%4d/%4d/%4d", uentp->chc_win, uentp->chc_lose, uentp->chc_tie); #endif return description; |