From: James Turner Date: Mon, 18 Nov 2013 08:40:34 +0000 (+0000) Subject: Fix a propObj -> node conversion bug. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2455d86d8bbb0184299e1d937943ec4c459f4c20;p=flightgear.git Fix a propObj -> node conversion bug. Thanks to Bertrand Coconnier for spotting this. --- diff --git a/src/Time/TimeManager.cxx b/src/Time/TimeManager.cxx index 8cbf18b4f..99ce9642b 100644 --- a/src/Time/TimeManager.cxx +++ b/src/Time/TimeManager.cxx @@ -174,7 +174,7 @@ void TimeManager::computeTimeDeltas(double& simDt, double& realDt) _lastClockFreeze = _clockFreeze->getBoolValue(); } - bool wait_for_scenery = !_sceneryLoaded; + bool wait_for_scenery = !_sceneryLoaded->getBoolValue(); if (!wait_for_scenery) { throttleUpdateRate(); }