mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
FPSCounter: Change Update's return type to void
Its returned value is never used.
This commit is contained in:
@ -14,10 +14,9 @@ public:
|
||||
// Initializes the FPS counter.
|
||||
FPSCounter();
|
||||
|
||||
// Called when a frame is rendered. Returns the value to be displayed on
|
||||
// screen as the FPS counter (updated every second).
|
||||
int Update();
|
||||
|
||||
// Called when a frame is rendered (updated every second).
|
||||
void Update();
|
||||
|
||||
unsigned int GetFPS() const { return m_fps; }
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user