(svn r1523) -Fix: somehow mousewheel was disabled on windows using SDL; reenabled again

-Fix: added missing CDECL to ellipsis functions and changed VS6 project file to use _cdecl calling conventions (thx tamlin)
This commit is contained in:
darkvater
2005-01-15 15:48:05 +00:00
parent 559317f9d0
commit ef3b9161f8
6 changed files with 10 additions and 11 deletions

2
sdl.c
View File

@@ -478,14 +478,12 @@ static int PollEvent(void)
_right_button_down = true;
_right_button_clicked = true;
break;
#if !defined(WIN32)
case SDL_BUTTON_WHEELUP:
_cursor.wheel--;
break;
case SDL_BUTTON_WHEELDOWN:
_cursor.wheel++;
break;
#endif
default:
break;
}