# HG changeset patch # User Patrice Mandin # Date 1158781763 0 # Node ID f54073d86c827ebfa1eeb88ca8393db405c418ed # Parent d774e9d7c2a8ae3677dcd42445084b338dc11c8f Reenable mouse usage using xbios vectors under MiNT diff -r d774e9d7c2a8 -r f54073d86c82 src/video/ataricommon/SDL_biosevents.c --- a/src/video/ataricommon/SDL_biosevents.c Wed Sep 20 19:47:09 2006 +0000 +++ b/src/video/ataricommon/SDL_biosevents.c Wed Sep 20 19:49:23 2006 +0000 @@ -60,9 +60,9 @@ if (!use_dev_mouse) { vectors_mask |= ATARI_XBIOS_MOUSEEVENTS; /* XBIOS mouse events */ } - if (Getcookie(C_MiNT, &dummy) == C_FOUND) { + /*if (Getcookie(C_MiNT, &dummy) == C_FOUND) { vectors_mask = 0; - } + }*/ SDL_AtariXbios_InstallVectors(vectors_mask); } diff -r d774e9d7c2a8 -r f54073d86c82 src/video/ataricommon/SDL_gemdosevents.c --- a/src/video/ataricommon/SDL_gemdosevents.c Wed Sep 20 19:47:09 2006 +0000 +++ b/src/video/ataricommon/SDL_gemdosevents.c Wed Sep 20 19:49:23 2006 +0000 @@ -67,9 +67,10 @@ if (!use_dev_mouse) { vectors_mask |= ATARI_XBIOS_MOUSEEVENTS; /* XBIOS mouse events */ } - if (Getcookie(C_MiNT, &dummy) == C_FOUND) { + /*if (Getcookie(C_MiNT, &dummy) == C_FOUND) { vectors_mask = 0; - } + }*/ + SDL_AtariXbios_InstallVectors(vectors_mask); }