From e36ceae483f9b6ce2605ff47e0873325ea8c5b48 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 21 Feb 2004 16:59:14 +0000 Subject: [PATCH] Changed the Timer class to default to using the standard clock under Linux to prevent Timer problems occur under Linux32 on the Athlon64. --- src/osg/Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/Timer.cpp b/src/osg/Timer.cpp index 702a2bd90..a2bdb489f 100644 --- a/src/osg/Timer.cpp +++ b/src/osg/Timer.cpp @@ -108,7 +108,7 @@ const Timer* Timer::instance() #if defined(__ia64) || defined(__x86_64__) _useStandardClock = true; #else - _useStandardClock = false; + _useStandardClock = true; #endif if (_useStandardClock)