From 807bcfb8e0208b6db777ad5c3390b43786011728 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 5 Apr 2003 00:30:38 +0000 Subject: [PATCH] Removed debug statement. Added return statement. --- src/Main/fg_commands.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2