Treat all stamp descriptions as UTF-8, since they are.

This commit is contained in:
Karl Ove Hufthammer 2004-07-07 17:19:45 +00:00
parent 7c9a36b7d9
commit 5a008250ed

View file

@ -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! */