mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
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:
parent
b805c3511d
commit
b4584abaa6
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user