Stupid little fix, var == "str" bad.... !strcmp(var, "str") good...

Thanks DripStone,

Kent
This commit is contained in:
Kent Mein
2007-03-20 15:07:23 +00:00
parent 83a9a84498
commit c10c71909e

View File

@@ -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));