summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/configuration/configure_system.cpp20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp
index 13bbc4ad9..94049f2f4 100644
--- a/src/yuzu/configuration/configure_system.cpp
+++ b/src/yuzu/configuration/configure_system.cpp
@@ -15,13 +15,19 @@
15#include "yuzu/configuration/configure_system.h" 15#include "yuzu/configuration/configure_system.h"
16 16
17constexpr std::array<u32, 7> LOCALE_BLOCKLIST{ 17constexpr std::array<u32, 7> LOCALE_BLOCKLIST{
18 0b100011100001100000, // Japan 18 // pzzefezrpnkzeidfej
19 0b000001101001100100, // Americas 19 // thhsrnhutlohsternp
20 0b100110100001000010, // Europe 20 // BHH4CG U
21 0b100110100001000010, // Australia 21 // Raa1AB S
22 0b000000000000000000, // China 22 // nn9
23 0b100111100001000000, // Korea 23 // ts
24 0b100111100001000000, // Taiwan 24 0b0100011100001100000, // Japan
25 0b0000001101001100100, // Americas
26 0b0100110100001000010, // Europe
27 0b0100110100001000010, // Australia
28 0b0000000000000000000, // China
29 0b0100111100001000000, // Korea
30 0b0100111100001000000, // Taiwan
25}; 31};
26 32
27static bool IsValidLocale(u32 region_index, u32 language_index) { 33static bool IsValidLocale(u32 region_index, u32 language_index) {