From 387c64ea6e82dba695768a163deac7048e9bed3a Mon Sep 17 00:00:00 2001 From: theoddone33 <> Date: Mon, 24 Sep 2001 03:34:09 +0000 Subject: [PATCH] temporarily disabled until I find a real fix --- zsnes/src/linux/sdlintrf.asm | 48 ++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/zsnes/src/linux/sdlintrf.asm b/zsnes/src/linux/sdlintrf.asm index de836894..a3b67422 100644 --- a/zsnes/src/linux/sdlintrf.asm +++ b/zsnes/src/linux/sdlintrf.asm @@ -1137,36 +1137,36 @@ NEWSYM Get_MouseData ; Returns both pressed and coordinates ret NEWSYM Set_MouseXMax ; Sets the X boundaries (ecx = left, edx = right) - pushad - push ecx - call SetMouseMinX - pop ecx - push edx - call SetMouseMaxX - pop edx - popad + ;pushad + ;push ecx + ;call SetMouseMinX + ;pop ecx + ;push edx + ;call SetMouseMaxX + ;pop edx + ;popad ret NEWSYM Set_MouseYMax ; Sets the Y boundaries (ecx = left, edx = right) - pushad - push ecx - call SetMouseMinY - pop ecx - push edx - call SetMouseMaxY - pop edx - popad + ;pushad + ;push ecx + ;call SetMouseMinY + ;pop ecx + ;push edx + ;call SetMouseMaxY + ;pop edx + ;popad ret NEWSYM Set_MousePosition ; Sets Mouse Position (x:cx,y:dx) - pushad - push ecx - call SetMouseX - pop ecx - push edx - call SetMouseY - pop edx - popad + ;pushad + ;push ecx + ;call SetMouse + ;pop ecx + ;push edx + ;call SetMouseY + ;pop edx + ;popad ret NEWSYM Get_MousePositionDisplacement