diff -r ec53caed9fb2 -r 9c6613983e85 src/video/ataricommon/SDL_gemdosevents.c --- a/src/video/ataricommon/SDL_gemdosevents.c Sun Mar 10 03:25:47 2002 +0000 +++ b/src/video/ataricommon/SDL_gemdosevents.c Sun Mar 10 03:33:59 2002 +0000 @@ -41,7 +41,7 @@ #include "SDL_events_c.h" #include "SDL_atarikeys.h" -#include "SDL_xbiosmouseevents_c.h" +#include "SDL_xbiosevents_c.h" /* To save state of keyboard */ #define ATARIBIOS_MAXKEYS 128 @@ -109,7 +109,7 @@ keymap[SCANCODE_LEFTALT] = SDLK_LALT; keymap[SCANCODE_CAPSLOCK] = SDLK_CAPSLOCK; - AtariXbios_InstallMouseVector(); + SDL_AtariXbios_InstallVectors(ATARI_XBIOS_MOUSEEVENTS|ATARI_XBIOS_JOYSTICKEVENTS); } void AtariGemdos_PumpEvents(_THIS) @@ -147,7 +147,7 @@ SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, gemdos_currentascii[i], &keysym)); } - AtariXbios_PostMouseEvents(this); + SDL_AtariXbios_PostMouseEvents(this); /* Will be previous table */ memcpy(gemdos_previouskeyboard, gemdos_currentkeyboard, ATARIBIOS_MAXKEYS); @@ -188,5 +188,5 @@ void AtariGemdos_ShutdownEvents(void) { - AtariXbios_RestoreMouseVector(); + SDL_AtariXbios_RestoreVectors(); }