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

@@ -333,15 +333,4 @@
; OS isn't able to do it by itself. (ie: Windows)
Window_position = 9999,9999; (Default 9999,9999 which means: NA)
; The program uses SDL's Unicode support to translate key combinations
; into characters, when you're typing in textboxes. However, on
; Windows 98 and if you're using a French or German keyboard, SDL has a
; rather severe bug: The key ^ causes an instant crash if the key
; that follows it isn't space or a vowel (the ones that make it a valid
; combination : ^âêîôû)
; If this problem concerns you, disable unicode below, and it will never
; crash. This won't affect keyboard shortcuts, but in text fields you'll be
; typing in US-QWERTY mode.
Use_unicode = yes ; (Default 'yes')
; end of configuration