mitch wanted the FPS counter to move to upper right of the screen. Not a

bad idea, here it is..
This commit is contained in:
Joseph Carter 2000-04-30 20:14:49 +00:00
parent 85254360f4
commit 0aa6a37ad2

View file

@ -520,7 +520,7 @@ void SCR_DrawFPS (void)
snprintf(st, sizeof(st), "%3d FPS", lastfps);
x = vid.width - strlen(st) * 8 - 8;
y = vid.height - sb_lines - 8;
y = vid.height - sb_lines - 0;
// Draw_TileClear(x, y, strlen(st) * 8, 8);
Draw_String(x, y, st);
}