From 1784543e14aa9aae8eef6252f7b40e599d949f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Thu, 23 Feb 2017 23:25:10 +0100 Subject: [PATCH] Set default first section to true --- src/openrct2/config/IniWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/config/IniWriter.cpp b/src/openrct2/config/IniWriter.cpp index c09e23a262..e846018ed3 100644 --- a/src/openrct2/config/IniWriter.cpp +++ b/src/openrct2/config/IniWriter.cpp @@ -23,7 +23,7 @@ class IniWriter final : public IIniWriter { private: IStream * _stream; - bool _firstSection = false; + bool _firstSection = true; public: IniWriter(IStream * stream)