mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Fix current time value
This commit is contained in:
@ -788,6 +788,7 @@ static double GetCurrentTime(void)
|
||||
QueryPerformanceFrequency(&clockFrequency);
|
||||
QueryPerformanceCounter(¤tTime);
|
||||
|
||||
time = (double)((double)currentTime/(double)clockFrequency);
|
||||
#endif
|
||||
|
||||
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI)
|
||||
|
||||
Reference in New Issue
Block a user