In the Knytt Underground game written in Python, ini files are used with English dialogue text (key = value - value is some dialogue phrase), when I entering the Polish character eg. ęąćź displays '?' I tried to type escape character
But it s not working. Game single backslash \ reads as a line break- (go to next line - only \ without the letter 'n')
I checked the ttf file in game folder("Ubuntu-Mono Regular.ttf") and it supports Polish letters.
So how do you save Polish letters (Unicode characters) in ANSI(propably) ini files?
Code:
sometext\x119sometext sometext\u119sometext
But it s not working. Game single backslash \ reads as a line break- (go to next line - only \ without the letter 'n')
I checked the ttf file in game folder("Ubuntu-Mono Regular.ttf") and it supports Polish letters.
So how do you save Polish letters (Unicode characters) in ANSI(propably) ini files?
Comment