Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
*** empty log message ***
  • Loading branch information
slouken committed Feb 21, 2002
1 parent 83cb7fd commit cd38b84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/video/ataricommon/SDL_biosevents.c
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/video/ataricommon/SDL_gemdosevents.c
Expand Up @@ -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);
Expand Down

0 comments on commit cd38b84

Please sign in to comment.