UWP: Fix Timer

This commit is contained in:
Henrik Rydgård
2017-02-28 11:40:18 +01:00
parent 255b4e60ac
commit 54f862cda6
+1 -1
View File
@@ -37,7 +37,7 @@ u32 Timer::GetTimeMs()
{
#if defined(_WIN32)
#if PPSSPP_PLATFORM(UWP)
return 0; // TODO UWP
return (u32)GetTickCount64();
#else
return timeGetTime();
#endif