RString RageDisplay::GetStats() const { RString s; // If FPS == 0, we don't have stats yet. if( !GetFPS() ) s = "-- FPS\n-- av FPS\n-- VPF"; s = ssprintf( "%i FPS\n%i av FPS\n%i VPF", GetFPS(), GetCumFPS(), GetVPF() ); // #if defined(_WINDOWS) s += "\n"+this->GetApiDescription(); // #endif return s; }
CString RageDisplay::GetStats() const { CString s; /* If FPS == 0, we don't have stats yet. */ if( !GetFPS() ) s = "-- FPS\n-- av FPS\n-- VPF"; else s = ssprintf( "%i FPS\n%i av FPS\n%i VPF", GetFPS(), GetCumFPS(), GetVPF() ); #ifdef _WINDOWS s += "\n" + this->GetApiDescription(); #endif return s; }