Rename FPS_REFRESH_INTERVAL in VideoCommon/FPSCounter
This commit is contained in:
parent
23ed611077
commit
2b2b8e932d
|
@ -12,7 +12,7 @@
|
||||||
#include "Core/Core.h"
|
#include "Core/Core.h"
|
||||||
#include "VideoCommon/VideoConfig.h"
|
#include "VideoCommon/VideoConfig.h"
|
||||||
|
|
||||||
static constexpr u64 FPS_REFRESH_INTERVAL = 250000;
|
static constexpr u64 FPS_REFRESH_INTERVAL_US = 250000;
|
||||||
|
|
||||||
FPSCounter::FPSCounter()
|
FPSCounter::FPSCounter()
|
||||||
{
|
{
|
||||||
|
@ -54,7 +54,7 @@ void FPSCounter::Update()
|
||||||
m_time_since_update += diff;
|
m_time_since_update += diff;
|
||||||
m_last_time = time;
|
m_last_time = time;
|
||||||
|
|
||||||
if (m_time_since_update >= FPS_REFRESH_INTERVAL)
|
if (m_time_since_update >= FPS_REFRESH_INTERVAL_US)
|
||||||
{
|
{
|
||||||
m_fps = m_frame_counter / (m_time_since_update / 1000000.0);
|
m_fps = m_frame_counter / (m_time_since_update / 1000000.0);
|
||||||
m_frame_counter = 0;
|
m_frame_counter = 0;
|
||||||
|
|
Loading…
Reference in New Issue