Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #891 from RachelBryk/netplay-time
Allow system time to move forward during netplay.
  • Loading branch information
dolphin-emu-bot committed Sep 3, 2014
2 parents 51a5311 + a3cfc98 commit e2dfa60
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/Core/HW/EXI_DeviceIPL.cpp
Expand Up @@ -352,6 +352,8 @@ u32 CEXIIPL::GetGCTime()

if (0 == ltime)
ltime = Common::Timer::GetLocalTimeSinceJan1970();
else
ltime += CoreTiming::GetTicks() / SystemTimers::GetTicksPerSecond();
}

return ((u32)ltime - cJanuary2000);
Expand Down

0 comments on commit e2dfa60

Please sign in to comment.