diff --git a/Core/CoreTiming.cpp b/Core/CoreTiming.cpp index d80eda97ec..2e29225390 100644 --- a/Core/CoreTiming.cpp +++ b/Core/CoreTiming.cpp @@ -204,7 +204,7 @@ void ScheduleEvent_Threadsafe(s64 cyclesIntoFuture, int event_type, u64 userdata { std::lock_guard lk(externalEventSection); Event *ne = GetNewTsEvent(); - ne->time = globalTimer + cyclesIntoFuture; + ne->time = GetTicks() + cyclesIntoFuture; ne->type = event_type; ne->next = 0; ne->userdata = userdata;