--- a/src/video/ataricommon/SDL_xbiosevents.c Wed Apr 03 21:45:25 2002 +0000
+++ b/src/video/ataricommon/SDL_xbiosevents.c Thu Apr 04 18:06:33 2002 +0000
@@ -126,10 +126,10 @@
curbutton = SDL_AtariXbios_mouseb & (1<<i);
prevbutton = atari_prevmouseb & (1<<i);
- if (curbutton & !prevbutton) {
+ if (curbutton && !prevbutton) {
SDL_PrivateMouseButton(SDL_PRESSED, atari_GetButton(i), 0, 0);
}
- if (!curbutton & prevbutton) {
+ if (!curbutton && prevbutton) {
SDL_PrivateMouseButton(SDL_RELEASED, atari_GetButton(i), 0, 0);
}
}