Fix font load order to match HOS

Without this games would load an inappropriate font file for their target language.
This commit is contained in:
Billy Laws 2022-09-22 21:31:33 +01:00
parent 272bbf6cd2
commit 5c4cc3d51f

View File

@ -23,12 +23,12 @@ namespace skyline::service::pl {
std::array<FontEntry, 6> fonts{
{
{"FontStandard.ttf"},
{"FontChineseSimplified.ttf"},
{"FontChineseTraditional.ttf"},
{"FontExtendedChineseSimplified.ttf"},
{"FontChineseTraditional.ttf"},
{"FontKorean.ttf"},
{"FontNintendoExtended.ttf"},
{"FontStandard.ttf"},
}
};