From 5c4cc3d51fbd8c0f8f3b2c77a42a5e25036f965f Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Thu, 22 Sep 2022 21:31:33 +0100 Subject: [PATCH] Fix font load order to match HOS Without this games would load an inappropriate font file for their target language. --- app/src/main/cpp/skyline/services/pl/shared_font_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/cpp/skyline/services/pl/shared_font_core.h b/app/src/main/cpp/skyline/services/pl/shared_font_core.h index e34b1056..41a0f271 100644 --- a/app/src/main/cpp/skyline/services/pl/shared_font_core.h +++ b/app/src/main/cpp/skyline/services/pl/shared_font_core.h @@ -23,12 +23,12 @@ namespace skyline::service::pl { std::array fonts{ { + {"FontStandard.ttf"}, {"FontChineseSimplified.ttf"}, - {"FontChineseTraditional.ttf"}, {"FontExtendedChineseSimplified.ttf"}, + {"FontChineseTraditional.ttf"}, {"FontKorean.ttf"}, {"FontNintendoExtended.ttf"}, - {"FontStandard.ttf"}, } };