summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FPSCounter.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-29 09:49:12 -0400
committerLioncash <mathew1800@gmail.com>2015-09-29 10:01:37 -0400
commit55c7754738acf0724f1e77b719b6f84d2dbfb08b (patch)
treec27e84a3b6ba74f4ad14a6ec2808de50af097153 /Source/Core/VideoCommon/FPSCounter.cpp
parente82b6a8532f97bb7ec13884596b2c518d4413530 (diff)
FPSCounter: Give the refresh interval a concrete type
Diffstat (limited to 'Source/Core/VideoCommon/FPSCounter.cpp')
-rw-r--r--Source/Core/VideoCommon/FPSCounter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/FPSCounter.cpp b/Source/Core/VideoCommon/FPSCounter.cpp
index 9466ab70a9..39322d44d7 100644
--- a/Source/Core/VideoCommon/FPSCounter.cpp
+++ b/Source/Core/VideoCommon/FPSCounter.cpp
@@ -10,7 +10,7 @@
#include "VideoCommon/FPSCounter.h"
#include "VideoCommon/VideoConfig.h"
-#define FPS_REFRESH_INTERVAL 1000
+static constexpr u64 FPS_REFRESH_INTERVAL = 1000;
FPSCounter::FPSCounter()
{