Merge pull request #3365 from yuzu-emu/revert-3151-fix-korean
Revert "system_archive: Fix Korean and Chinese fonts"
This commit is contained in:
commit
1948fc0858
File diff suppressed because it is too large
Load Diff
|
@ -8,6 +8,6 @@
|
||||||
|
|
||||||
namespace FileSys::SystemArchive::SharedFontData {
|
namespace FileSys::SystemArchive::SharedFontData {
|
||||||
|
|
||||||
extern const std::array<unsigned char, 8334256> FONT_CHINESE_SIMPLIFIED;
|
extern const std::array<unsigned char, 217276> FONT_CHINESE_SIMPLIFIED;
|
||||||
|
|
||||||
} // namespace FileSys::SystemArchive::SharedFontData
|
} // namespace FileSys::SystemArchive::SharedFontData
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
namespace FileSys::SystemArchive::SharedFontData {
|
namespace FileSys::SystemArchive::SharedFontData {
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
const std::array<unsigned char, 293516> FONT_EXTENDED_CHINESE_SIMPLIFIED{{
|
const std::array<unsigned char, 293516> FONT_EXTENDED_CHINESE_SIMPLIFIED{{
|
||||||
0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x04, 0x00, 0x30, 0x42, 0x41, 0x53, 0x45,
|
0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x04, 0x00, 0x30, 0x42, 0x41, 0x53, 0x45,
|
||||||
0x65, 0x1e, 0x5d, 0xbd, 0x00, 0x03, 0x1e, 0xf4, 0x00, 0x00, 0x00, 0x46, 0x44, 0x53, 0x49, 0x47,
|
0x65, 0x1e, 0x5d, 0xbd, 0x00, 0x03, 0x1e, 0xf4, 0x00, 0x00, 0x00, 0x46, 0x44, 0x53, 0x49, 0x47,
|
||||||
|
@ -18354,6 +18353,5 @@ const std::array<unsigned char, 293516> FONT_EXTENDED_CHINESE_SIMPLIFIED{{
|
||||||
0xbf, 0x6c, 0x52, 0x24, 0x3e, 0xb4, 0xc6, 0x1e, 0xe1, 0x7d, 0xdf, 0x7a, 0x97, 0xeb, 0xb4, 0xe2,
|
0xbf, 0x6c, 0x52, 0x24, 0x3e, 0xb4, 0xc6, 0x1e, 0xe1, 0x7d, 0xdf, 0x7a, 0x97, 0xeb, 0xb4, 0xe2,
|
||||||
0xda, 0x7e, 0x74, 0xf9, 0x01, 0xc4, 0xbc, 0x7e, 0xf9, 0x00, 0x00, 0x00,
|
0xda, 0x7e, 0x74, 0xf9, 0x01, 0xc4, 0xbc, 0x7e, 0xf9, 0x00, 0x00, 0x00,
|
||||||
}};
|
}};
|
||||||
// clang-format on
|
|
||||||
|
|
||||||
} // namespace FileSys::SystemArchive::SharedFontData
|
} // namespace FileSys::SystemArchive::SharedFontData
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,6 +8,6 @@
|
||||||
|
|
||||||
namespace FileSys::SystemArchive::SharedFontData {
|
namespace FileSys::SystemArchive::SharedFontData {
|
||||||
|
|
||||||
extern const std::array<unsigned char, 2227620> FONT_KOREAN;
|
extern const std::array<unsigned char, 217276> FONT_KOREAN;
|
||||||
|
|
||||||
} // namespace FileSys::SystemArchive::SharedFontData
|
} // namespace FileSys::SystemArchive::SharedFontData
|
||||||
|
|
Reference in New Issue