Fixed issue 167: Crashes on win98 with international keyboards (SDL.DLL, recompiled from 1.2.13 source archive)

Fixed old bug (all platforms): When typing text with dead-keys like ^ ` it would additionally type the character on same key for US-QWERTY keyboard.
Removed the "disable Unicode" option added in r814, no longer needed.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@816 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2009-05-23 01:29:18 +00:00
parent 9e4866e34c
commit 4191b37099
7 changed files with 14 additions and 76 deletions

View File

@@ -798,12 +798,7 @@ int Load_INI(T_Config * conf)
conf->Window_pos_x = values[0];
conf->Window_pos_y = values[1];
}
// Optional, Unicode support on/off (>98.0%)
conf->Use_unicode=1;
if (!Load_INI_get_values (file,buffer,"Use_unicode",1,values))
{
conf->Use_unicode = (values[0]!=0);
}
fclose(file);