From 54f862cda6944a98ebd885271a96f7c3b3eb4123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Tue, 28 Feb 2017 11:39:13 +0100 Subject: [PATCH] UWP: Fix Timer --- Common/Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Timer.cpp b/Common/Timer.cpp index 390b315ea4..ca5140c7a4 100644 --- a/Common/Timer.cpp +++ b/Common/Timer.cpp @@ -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