From e2e7079f17e3a9e204bfab95ecef39977e282c97 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 22 Feb 2020 22:35:51 +0100 Subject: [PATCH] Fix YaHei detection (#10820) --- src/openrct2/interface/Fonts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/interface/Fonts.cpp b/src/openrct2/interface/Fonts.cpp index 7d28446a5e..b711f32eb6 100644 --- a/src/openrct2/interface/Fonts.cpp +++ b/src/openrct2/interface/Fonts.cpp @@ -49,7 +49,7 @@ TTFFontSetDescriptor TTFFontHeiti = { { } }; TTFFontSetDescriptor TTFFontSimSun = { { - { "msyh.ttc", "YaHei", 9, -1, -1, 9, HINTING_THRESHOLD_MEDIUM, nullptr }, + { "msyh.ttc", "Microsoft YaHei", 9, -1, -1, 9, HINTING_THRESHOLD_MEDIUM, nullptr }, { "simsun.ttc", "SimSun", 11, 1, -1, 14, HINTING_THRESHOLD_MEDIUM, nullptr }, { "simsun.ttc", "SimSun", 12, 1, -2, 15, HINTING_THRESHOLD_MEDIUM, nullptr }, } };