UI Bugfix patch from Russell Smith

This commit is contained in:
jsalmon3 2002-11-30 20:36:08 +00:00
parent c6528031ae
commit 387076b790

View file

@ -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;
}
}