Moved the basic preset store back to an array of vectors.

This commit is contained in:
Joseph Lenox 2018-11-17 21:19:54 -06:00 committed by Joseph Lenox
parent 49a1628dfb
commit dc3b420c09

View File

@ -33,7 +33,7 @@ public:
void OnUnhandledException() override; void OnUnhandledException() override;
std::vector<Presets> presets { preset_types, Presets() }; std::array<Presets, preset_types> presets { Presets() };
std::array<wxString, preset_types> preset_ini { }; std::array<wxString, preset_types> preset_ini { };
private: private:
std::unique_ptr<Notifier> notifier {nullptr}; std::unique_ptr<Notifier> notifier {nullptr};