Treat all stamp descriptions as UTF-8, since they are.
This commit is contained in:
parent
7c9a36b7d9
commit
5a008250ed
1 changed files with 1 additions and 1 deletions
|
|
@ -7849,7 +7849,7 @@ void wordwrap_text(TTF_Font * font, char * str, SDL_Color color,
|
|||
if (want_utf8)
|
||||
text = TTF_RenderUTF8_Blended(font, substr, color);
|
||||
else
|
||||
text = TTF_RenderText_Blended(locale_font, substr, color);
|
||||
text = TTF_RenderUTF8_Blended(locale_font, substr, color);
|
||||
|
||||
|
||||
/* If it won't fit on this line, move to the next! */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue