From 5a008250ed74ec64b581a7191984dd9b426ecd2f Mon Sep 17 00:00:00 2001 From: Karl Ove Hufthammer Date: Wed, 7 Jul 2004 17:19:45 +0000 Subject: [PATCH] Treat all stamp descriptions as UTF-8, since they are. --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index cc979467c..ff4c3372c 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -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! */