Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
*** empty log message ***
- Loading branch information
|
@@ -139,7 +139,7 @@ void AtariBios_PumpEvents(_THIS) |
|
|
|
|
|
/* 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); |
|
|
|
@@ -144,7 +144,7 @@ void AtariGemdos_PumpEvents(_THIS) |
|
|
|
|
|
/* 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); |
|
|