Only display the video renderer in stats on Windows. Mac OS and Linux only have OpenGL available so this doesn't matter.

This commit is contained in:
Colby Klein
2009-01-02 21:44:45 +00:00
parent 42fd54048e
commit 3764146303
+2
View File
@@ -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;
}