From b4584abaa6e7a4d7bc7932633c5c6391cd2c83c7 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 6 Jun 2020 15:09:48 +0200 Subject: [PATCH] Fix build There was a race condition between two PRs incrementing the array size. CI didn't catch it because the PR that was merged last (PR #8824) wasn't rebuilt after the first PR was merged. --- Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp index 50532508f9..378bea68a2 100644 --- a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp +++ b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp @@ -28,7 +28,7 @@ bool IsSettingSaveable(const Config::Location& config_location) return true; } - static constexpr std::array s_setting_saveable = { + static constexpr std::array s_setting_saveable = { // Main.Core &Config::MAIN_DEFAULT_ISO.location,