Changed the Timer class to default to using the standard clock under

Linux to prevent Timer problems occur under Linux32 on the Athlon64.
This commit is contained in:
Robert Osfield
2004-02-21 16:59:14 +00:00
parent 11975bd4da
commit e36ceae483

View File

@@ -108,7 +108,7 @@ const Timer* Timer::instance()
#if defined(__ia64) || defined(__x86_64__)
_useStandardClock = true;
#else
_useStandardClock = false;
_useStandardClock = true;
#endif
if (_useStandardClock)