From 104089a3e34f597084a4df8355f9dbcb1325719b Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 11 Nov 2018 00:18:01 -0600 Subject: [PATCH] Use std::array for the preset ini files. --- src/GUI/GUI.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GUI/GUI.hpp b/src/GUI/GUI.hpp index a5a090146..801fc6d08 100644 --- a/src/GUI/GUI.hpp +++ b/src/GUI/GUI.hpp @@ -5,6 +5,7 @@ #include "Notifier.hpp" #include #include +#include #include #include @@ -33,6 +34,7 @@ public: void OnUnhandledException() override; std::vector presets { preset_types, Presets() }; + std::array preset_ini { }; private: std::unique_ptr notifier {nullptr};