]> git.mxchange.org Git - flightgear.git/commitdiff
Fix typo
authorTorsten Dreyer <Torsten@t3r.de>
Wed, 31 Aug 2011 17:54:59 +0000 (19:54 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Wed, 31 Aug 2011 17:54:59 +0000 (19:54 +0200)
src/Main/fg_props.hxx

index 055beaeea18d2d0bb958b9cd299651801de4d4a9..8f2e95f0f081def7f4caba1078a69718c8e52270 100644 (file)
@@ -557,7 +557,7 @@ extern bool fgSetFloat (const char * name, float val);
  */
 inline bool fgSetFloat (const std::string & name, float val)
 {
-    return fgSetBool( name.c_str(), val );
+    return fgSetFloat( name.c_str(), val );
 }