From e9d9408669a97062901aa8d2c6b00c24bfcdc3ce Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 29 Aug 2005 21:27:08 +0000 Subject: [PATCH] oops, left in debug statement --- panda/src/express/trueClock.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/panda/src/express/trueClock.cxx b/panda/src/express/trueClock.cxx index e68e9a998e..1441108d8a 100644 --- a/panda/src/express/trueClock.cxx +++ b/panda/src/express/trueClock.cxx @@ -106,8 +106,7 @@ get_short_time() { PN_int64 count; QueryPerformanceCounter((LARGE_INTEGER *)&count); - time = (double)(count - _init_count) * _recip_frequency + - ConfigVariableDouble("clock-jump", 0.0); + time = (double)(count - _init_count) * _recip_frequency; } else { // No high-resolution clock; return the best information we have.