[BTS] (Solved)I have a problem of korean text.

GreatBayethe

Chieftain
Joined
Jul 12, 2017
Messages
24
K-037.png


In this picture, english has no problem, but korean city name appears as a question mark. I uploaded a log folder. Please help me.
 

Attachments

  • Logs.zip
    336.6 KB · Views: 2
Last edited:
The issue is likely that city billboards use GameFont.tga to display text and that file by default only contain western European characters. (codepage 1252).
Assets\XML\Art\CIV4ArtDefines_Misc.xml
Code:
		<MiscArtInfo>
			<Type>CITY_BILLBOARDS</Type>
			<Path>None</Path>
			<!-- positive scale: city billboards use fonts from GameFont.tga -->
			<!-- negative scale: GFC billboards (uses the interface font) -->
			<fScale>1.0</fScale>
			<NIF>None</NIF>
			<KFM>None</KFM>
		</MiscArtInfo>
I haven't experimented with this myself, but it looks like using fScale=-1.0 will do what you want as that will use the font file, which is also used in other text.
 
Top Bottom