From c10c71909e87c9a01178591f747bc976ce22d77a Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Tue, 20 Mar 2007 15:07:23 +0000 Subject: Stupid little fix, var == "str" bad.... !strcmp(var, "str") good... Thanks DripStone, Kent --- source/blender/src/filesel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/src/filesel.c') diff --git a/source/blender/src/filesel.c b/source/blender/src/filesel.c index 07a3174809a..aea0b8d49cf 100644 --- a/source/blender/src/filesel.c +++ b/source/blender/src/filesel.c @@ -976,11 +976,11 @@ static void print_line(SpaceFile *sfile, struct direntry *files, int x, int y) lme = find_language(U.language); - if (lme->code == "ja_JP") { /* japanese */ + if (!strcmp(lme->code, "ja_JP")) { /* japanese */ string_to_utf8(files->relname, utf_8, "Shift_JIS"); BIF_RasterPos((float)x, (float)y); /* texture fonts */ BIF_DrawString(G.font, utf_8, (U.transopts & USER_TR_MENUS)); - } else if (lme->code == "zh_CN") { /* chinese */ + } else if (!strcmp(lme->code, "zh_CN")) { /* chinese */ string_to_utf8(files->relname, utf_8, "gb2312"); BIF_RasterPos((float)x, (float)y); /* texture fonts */ BIF_DrawString(G.font, utf_8, (U.transopts & USER_TR_MENUS)); -- cgit v1.2.3