# HG changeset patch # User Sam Lantinga # Date 1014328289 0 # Node ID d8b7eae78652dd2994e864f74d43b0c4b3853657 # Parent 3d8b6b9f1e18215ac8a95fec1d950a6784d12faf *** empty log message *** diff -r 3d8b6b9f1e18 -r d8b7eae78652 src/video/ataricommon/SDL_biosevents.c --- a/src/video/ataricommon/SDL_biosevents.c Wed Feb 20 01:05:51 2002 +0000 +++ b/src/video/ataricommon/SDL_biosevents.c Thu Feb 21 21:51:29 2002 +0000 @@ -139,7 +139,7 @@ /* Key unpressed ? */ if (bios_previouskeyboard[i] && !bios_currentkeyboard[i]) - SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, 0, &keysym)); + SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, bios_currentascii[i], &keysym)); } AtariXbios_PostMouseEvents(this); diff -r 3d8b6b9f1e18 -r d8b7eae78652 src/video/ataricommon/SDL_gemdosevents.c --- a/src/video/ataricommon/SDL_gemdosevents.c Wed Feb 20 01:05:51 2002 +0000 +++ b/src/video/ataricommon/SDL_gemdosevents.c Thu Feb 21 21:51:29 2002 +0000 @@ -144,7 +144,7 @@ /* Key unpressed ? */ if (gemdos_previouskeyboard[i] && !gemdos_currentkeyboard[i]) - SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, 0, &keysym)); + SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, gemdos_currentascii[i], &keysym)); } AtariXbios_PostMouseEvents(this);