From 48a95a9b3039924324e95bf9cbf96f12681499c3 Mon Sep 17 00:00:00 2001 From: superp00t Date: Fri, 11 Apr 2025 05:40:21 -0400 Subject: [PATCH] refactor(time): add TimingMethods enum value --- common/time/Time.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/time/Time.hpp b/common/time/Time.hpp index 508de27..ace9238 100644 --- a/common/time/Time.hpp +++ b/common/time/Time.hpp @@ -7,7 +7,8 @@ enum TimingMethod { Timing_NotSet = -1, Timing_BestAvailable = 0, Timing_GetTickCount = 1, - Timing_QueryPerformanceCounter = 2 + Timing_QueryPerformanceCounter = 2, + TimingMethods = 3 }; void OsTimeStartup(TimingMethod timingMethod);