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.
This commit is contained in:
JosJuice 2020-06-06 15:09:48 +02:00
parent b805c3511d
commit b4584abaa6

View File

@ -28,7 +28,7 @@ bool IsSettingSaveable(const Config::Location& config_location)
return true;
}
static constexpr std::array<const Config::Location*, 103> s_setting_saveable = {
static constexpr std::array<const Config::Location*, 104> s_setting_saveable = {
// Main.Core
&Config::MAIN_DEFAULT_ISO.location,