Azerty keyboard layout

Hi all,

Some of the people who played my game, complained that they cannot type
some letters with keyboards with azerty layout.

Are there any known problems with this?

TIA–
Milan Babuskov
http://njam.sourceforge.net

Some of the people who played my game, complained that they cannot
type some letters with keyboards with azerty layout.

I think you must use unicode… at least that’s what I’m doing for text
input.

Something like:

SDL_EnableUNICODE( 1 );
while( SDL_PollEvent( &event ) )
{
switch( event.type )
{
case SDL_KEYDOWN:
if( event.key.keysym.unicode < 256 )
char_pressed = event.key.keysym.unicode;

… and so on.On 01/06/2004, Milan Babuskov, you wrote:


Please remove “.ARGL.invalid” from my email when replying.
Incoming HTML mails are automatically deleted.