mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
FPSCounter: Direct initialize class members
This commit is contained in:
@ -21,9 +21,9 @@ public:
|
||||
unsigned int GetFPS() const { return m_fps; }
|
||||
|
||||
private:
|
||||
unsigned int m_fps;
|
||||
unsigned int m_counter;
|
||||
unsigned int m_fps_last_counter;
|
||||
unsigned int m_fps = 0;
|
||||
unsigned int m_counter = 0;
|
||||
unsigned int m_fps_last_counter = 0;
|
||||
Common::Timer m_update_time;
|
||||
|
||||
Common::Timer m_render_time;
|
||||
|
Reference in New Issue
Block a user