Rename FPS_REFRESH_INTERVAL in VideoCommon/FPSCounter

This commit is contained in:
Braxton Anderson 2022-06-17 20:11:53 -06:00
parent 23ed611077
commit 2b2b8e932d
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include "Core/Core.h"
#include "VideoCommon/VideoConfig.h"
static constexpr u64 FPS_REFRESH_INTERVAL = 250000;
static constexpr u64 FPS_REFRESH_INTERVAL_US = 250000;
FPSCounter::FPSCounter()
{
@ -54,7 +54,7 @@ void FPSCounter::Update()
m_time_since_update += diff;
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_frame_counter = 0;