From 376414630331e5d6eadbb9ef152238ab2e94ab8d Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Fri, 2 Jan 2009 21:44:45 +0000 Subject: [PATCH] Only display the video renderer in stats on Windows. Mac OS and Linux only have OpenGL available so this doesn't matter. --- stepmania/src/RageDisplay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/RageDisplay.cpp b/stepmania/src/RageDisplay.cpp index 39fe74e26b..dd9de198d2 100644 --- a/stepmania/src/RageDisplay.cpp +++ b/stepmania/src/RageDisplay.cpp @@ -150,7 +150,9 @@ RString RageDisplay::GetStats() const s = ssprintf( "%i FPS\n%i av FPS\n%i VPF", GetFPS(), GetCumFPS(), GetVPF() ); + #if defined(_WINDOWS) s += "\n"+this->GetApiDescription(); + #endif return s; }