settings: comment language blocklist columns

This commit is contained in:
Colin Kinloch 2022-12-29 16:29:50 +00:00
parent 8594f287b8
commit 28cfc2146f

View file

@ -15,13 +15,19 @@
#include "yuzu/configuration/configure_system.h" #include "yuzu/configuration/configure_system.h"
constexpr std::array<u32, 7> LOCALE_BLOCKLIST{ constexpr std::array<u32, 7> LOCALE_BLOCKLIST{
0b100011100001100000, // Japan // pzzefezrpnkzeidfej
0b000001101001100100, // Americas // thhsrnhutlohsternp
0b100110100001000010, // Europe // BHH4CG U
0b100110100001000010, // Australia // Raa1AB S
0b000000000000000000, // China // nn9
0b100111100001000000, // Korea // ts
0b100111100001000000, // Taiwan 0b0100011100001100000, // Japan
0b0000001101001100100, // Americas
0b0100110100001000010, // Europe
0b0100110100001000010, // Australia
0b0000000000000000000, // China
0b0100111100001000000, // Korea
0b0100111100001000000, // Taiwan
}; };
static bool IsValidLocale(u32 region_index, u32 language_index) { static bool IsValidLocale(u32 region_index, u32 language_index) {