From: david Date: Sat, 5 Apr 2003 00:30:38 +0000 (+0000) Subject: Removed debug statement. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=807bcfb8e0208b6db777ad5c3390b43786011728;p=flightgear.git Removed debug statement. Added return statement. --- diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index cda99467a..389c28fc6 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -699,7 +699,7 @@ do_property_randomize (const SGPropertyNode * arg) double min = arg->getDoubleValue("min", DBL_MIN); double max = arg->getDoubleValue("max", DBL_MAX); prop->setDoubleValue(sg_random() * (max - min) + min); - std::cerr << "Random value is " << prop->getDoubleValue() << std::endl; + return true; }