diff -r ec53caed9fb2 -r 9c6613983e85 src/video/ataricommon/SDL_biosevents.c --- a/src/video/ataricommon/SDL_biosevents.c Sun Mar 10 03:25:47 2002 +0000 +++ b/src/video/ataricommon/SDL_biosevents.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 @@ -104,7 +104,7 @@ keymap[SCANCODE_LEFTALT] = SDLK_LALT; keymap[SCANCODE_CAPSLOCK] = SDLK_CAPSLOCK; - AtariXbios_InstallMouseVector(); + SDL_AtariXbios_InstallVectors(ATARI_XBIOS_MOUSEEVENTS|ATARI_XBIOS_JOYSTICKEVENTS); } void AtariBios_PumpEvents(_THIS) @@ -142,7 +142,7 @@ SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(i, bios_currentascii[i], &keysym)); } - AtariXbios_PostMouseEvents(this); + SDL_AtariXbios_PostMouseEvents(this); /* Will be previous table */ memcpy(bios_previouskeyboard, bios_currentkeyboard, ATARIBIOS_MAXKEYS); @@ -183,5 +183,5 @@ void AtariBios_ShutdownEvents(void) { - AtariXbios_RestoreMouseVector(); + SDL_AtariXbios_RestoreVectors(); }