From b0a44fa0e2a99d12dda2a97d5aeefc79de0c2d32 Mon Sep 17 00:00:00 2001 From: kcwu Date: Fri, 8 Oct 2004 19:44:29 +0000 Subject: display one more digit of game record git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2232 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/talk.c | 6 +++--- 1 file 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; -- cgit v1.2.3