summaryrefslogtreecommitdiff
path: root/src/configuration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r--src/configuration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 66615d12d..3fb323dd2 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -514,7 +514,7 @@ std::string Configuration::getStringValue(const std::string &key) const
float Configuration::getFloatValue(const std::string &key) const
{
GETLOG();
- float defaultValue = 0.0f;
+ float defaultValue = 0.0F;
const Options::const_iterator iter = mOptions.find(key);
if (iter == mOptions.end())
{