From 0dcadb7e1a269b0f301037f65963f96a77151a60 Mon Sep 17 00:00:00 2001 From: Frederic Bouvier Date: Fri, 30 Mar 2012 20:59:39 +0200 Subject: [PATCH] Fix a typo in proptest.cpp --- src/FDM/YASim/proptest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FDM/YASim/proptest.cpp b/src/FDM/YASim/proptest.cpp index 81955b5a8..c183f6864 100644 --- a/src/FDM/YASim/proptest.cpp +++ b/src/FDM/YASim/proptest.cpp @@ -26,8 +26,8 @@ bool fgSetString(char const * name, char const * str) { return false; } SGPropertyNode* fgGetNode (const char * path, bool create) { return 0; } SGPropertyNode* fgGetNode (const char * path, int i, bool create) { return 0; } float fgGetFloat (const char * name, float defaultValue) { return 0; } -float fgGetDouble (const char * name, double defaultValue) { return 0; } -float fgSetDouble (const char * name, double defaultValue) { return 0; } +double fgGetDouble (const char * name, double defaultValue) { return 0; } +bool fgSetDouble (const char * name, double defaultValue) { return false; } static const float KTS2MPS = 0.514444444444; static const float RPM2RAD = 0.10471975512;