FPSCounter: Initialize members.

This commit is contained in:
Jules Blok 2014-07-26 14:37:18 +02:00
parent ed2c74a024
commit ec402a0d5f
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@
#define FPS_REFRESH_INTERVAL 1000
FPSCounter::FPSCounter()
: m_fps(0)
, m_counter(0)
, m_fps_last_counter(0)
{
m_update_time.Update();
m_render_time.Update();