From: curt Date: Wed, 13 Feb 2002 02:46:01 +0000 (+0000) Subject: Oops fixed one small mistake from the last fix. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=465678ad079f3324e0bc8b572895ebfd4bf47a51;p=flightgear.git Oops fixed one small mistake from the last fix. --- diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 129eb5304..6d91652fd 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -1084,8 +1084,7 @@ static void fgMainLoop( void ) { if ( clock_freeze->getBoolValue() ) { // clock freeze requested if ( cur_time_override->getLongValue() == 0 ) { - fgSetLong( "/sim/time/cur-time-override", - t->get_cur_time() + globals->get_warp() ); + fgSetLong( "/sim/time/cur-time-override", t->get_cur_time() ); globals->set_warp( 0 ); } } else {