Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Reenable mouse usage using xbios vectors under MiNT
  • Loading branch information
pmandin committed Sep 20, 2006
1 parent 1180af7 commit 1e19774
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/video/ataricommon/SDL_biosevents.c
Expand Up @@ -60,9 +60,9 @@ AtariBios_InitOSKeymap(_THIS)
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);
}
Expand Down
5 changes: 3 additions & 2 deletions src/video/ataricommon/SDL_gemdosevents.c
Expand Up @@ -67,9 +67,10 @@ AtariGemdos_InitOSKeymap(_THIS)
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);
}

Expand Down

0 comments on commit 1e19774

Please sign in to comment.