Revert "Attempt to fix frame timer on broken mainboards"

This reverts commit 5eb99b7d2f.
This commit is contained in:
Siana Gearz
2013-01-03 03:02:15 +01:00
parent 1872337f5f
commit ddef80d2cf

View File

@@ -262,11 +262,6 @@ U64 totalTime()
// No wrapping, we're all okay.
gTotalTimeClockCount += current_clock_count - gLastTotalTimeClockCount;
}
else if((gLastTotalTimeClockCount - current_clock_count)<0xFFFF)
{
//clock is glitching and walking backwards - ignore it
gTotalTimeClockCount = gLastTotalTimeClockCount;
}
else
{
// We've wrapped. Compensate correctly