Fix current time value

This commit is contained in:
victorfisac 2016-06-14 20:25:08 +02:00
parent 54537e8f0b
commit 5a1cbb2842

View File

@ -788,6 +788,7 @@ static double GetCurrentTime(void)
QueryPerformanceFrequency(&clockFrequency);
QueryPerformanceCounter(&currentTime);
time = (double)((double)currentTime/(double)clockFrequency);
#endif
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI)