From 387076b79015263ad55d3f81e34f70342f747026 Mon Sep 17 00:00:00 2001 From: jsalmon3 <> Date: Sat, 30 Nov 2002 20:36:08 +0000 Subject: [PATCH] UI Bugfix patch from Russell Smith --- src/ui/mainscr.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/mainscr.cpp b/src/ui/mainscr.cpp index b54950403..36125c519 100644 --- a/src/ui/mainscr.cpp +++ b/src/ui/mainscr.cpp @@ -1164,13 +1164,13 @@ global void DrawInfoPanel(void) } - VideoDrawNumber(x+20,y,GameFont,i); + VideoDrawNumber(x+15,y,GameFont,i); VideoDrawRectangle(ColorWhite,x, y, 12, 12); VideoFillRectangle(Players[i].Color, x + 1, y + 1, 10, 10); - VideoDrawText(x+40,y,GameFont,Players[i].Name); - VideoDrawNumber(x+130,y,GameFont,Players[i].Score); + VideoDrawText(x+27,y,GameFont,Players[i].Name); + VideoDrawNumber(x+117,y,GameFont,Players[i].Score); y+=14; } }