From ddef80d2cfed0d30626e55b3416b177ebee149d7 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Thu, 3 Jan 2013 03:02:15 +0100 Subject: [PATCH] Revert "Attempt to fix frame timer on broken mainboards" This reverts commit 5eb99b7d2fb909de3ba759d9d5e469abffe50cf6. --- indra/llcommon/lltimer.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/indra/llcommon/lltimer.cpp b/indra/llcommon/lltimer.cpp index 007ee2816..2d515c212 100644 --- a/indra/llcommon/lltimer.cpp +++ b/indra/llcommon/lltimer.cpp @@ -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