Allow system time to move forward during netplay.

This commit is contained in:
Rachel Bryk 2014-08-27 16:38:29 -04:00
parent 7d05ebbc9b
commit a3cfc98f26
1 changed files with 2 additions and 0 deletions

View File

@ -352,6 +352,8 @@ u32 CEXIIPL::GetGCTime()
if (0 == ltime)
ltime = Common::Timer::GetLocalTimeSinceJan1970();
else
ltime += CoreTiming::GetTicks() / SystemTimers::GetTicksPerSecond();
}
return ((u32)ltime - cJanuary2000);