diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index 37a98bea1..13bbc4ad9 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -25,7 +25,7 @@ constexpr std::array<u32, 7> LOCALE_BLOCKLIST{ | |||
| 25 | }; | 25 | }; |
| 26 | 26 | ||
| 27 | static bool IsValidLocale(u32 region_index, u32 language_index) { | 27 | static bool IsValidLocale(u32 region_index, u32 language_index) { |
| 28 | return ((LOCALE_BLOCKLIST[region_index] >> language_index) & 1) == 0; | 28 | return ((LOCALE_BLOCKLIST.at(region_index) >> language_index) & 1) == 0; |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | ConfigureSystem::ConfigureSystem(Core::System& system_, QWidget* parent) | 31 | ConfigureSystem::ConfigureSystem(Core::System& system_, QWidget* parent) |