Displaying 3 results from an estimated 3 matches for "spi_getmouse".
2001 Mar 22
0
Problems with OpenGL in tribes
...xme:console:SetConsoleCtrlHandler (0x60a620,1) - no error checking or
testing yet
fixme:win32:DEVICE_Open Unknown VxD DINPUT.VXD. Try --winver nt40 or win31 !
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel
(0x40387248,00000150,2):stub
fixme:system:SystemParametersInfoA Unimplemented action: 3 (SPI_GETMOUSE)
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel
(0x40387248,00000150,2):stub
fixme:system:SystemParametersInfoA Unimplemented action: 3 (SPI_GETMOUSE)
fixme:system:ChangeDisplaySettingsA (0x40576a68,0x00000004), stub
flags=FULLSCREEN,
fixme:system:ChangeDisplaySettingsA width=800
fix...
2001 Mar 25
0
Half-Life Troubles (again)
Hi,
i can't play Half-Life anymore. The error message in the console says:
fixme:system:SystemParametersInfoA Unimplemented action: 3 (SPI_GETMOUSE)
I think it's got something to do with the settings for XFree as i was able
to play HL before and didn't change anything with wine (iirc). First only
the -desktop and -managed options didn't work anymore with HL and
now (after trying to upgrade to xf403, running into probs and going...
2003 Apr 10
1
Starcraft Patch
...========================================================
RCS file: /home/wine/wine/windows/input.c,v
retrieving revision 1.90
diff -u -r1.90 input.c
--- windows/input.c 8 Jan 2003 00:27:58 -0000 1.90
+++ windows/input.c 10 Apr 2003 02:16:20 -0000
@@ -230,10 +230,10 @@
SystemParametersInfoA(SPI_GETMOUSE, 0, accel, 0);
accelMult = 1;
- if (mi->dx > accel[0] && accel[2] != 0)
+ if (labs(mi->dx) > accel[0] && accel[2] != 0)
{
accelMult = 2;
- if ((mi->dx > accel[1]) && (accel[2] == 2))
+ if...