From abb143ef7c31c79be5a1e58e173cbc8f19a2a878 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 21 Jul 2024 02:31:06 +0200 Subject: [PATCH] Added small change to Config.h --- EscapeTheBackroomsGUiTest/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EscapeTheBackroomsGUiTest/Config.h b/EscapeTheBackroomsGUiTest/Config.h index ccd4ba1..c2809d9 100644 --- a/EscapeTheBackroomsGUiTest/Config.h +++ b/EscapeTheBackroomsGUiTest/Config.h @@ -115,7 +115,7 @@ public: std::vector GetLastErrors(); //See if the Config System has failed anywhere - bool hasConfigFailed() { return failed; }; + constexpr bool hasConfigFailed() const { return failed; }; //Call when switching Configs bool ActivateConfig(std::string ConfigName, std::string Path); bool WriteToFields();