get rid of vertex queue

This commit is contained in:
Glenn Maynard
2003-01-08 23:16:28 +00:00
parent 185b128ab1
commit 8c4a024888
5 changed files with 28 additions and 124 deletions
+3 -3
View File
@@ -137,9 +137,9 @@ void ScreenManager::Draw()
{
/* If FPS == 0, we don't have stats yet. */
m_textStats.SetText( ssprintf(DISPLAY->GetFPS()?
"%i FPS\n%i VPF\n%i DPF":
"-- FPS\n-- VPF\n-- DPF",
DISPLAY->GetFPS(), DISPLAY->GetVPF(), DISPLAY->GetDPF()) );
"%i FPS\n%i VPF":
"-- FPS\n-- VPF",
DISPLAY->GetFPS(), DISPLAY->GetVPF()) );
m_textStats.Draw();
}