Removed the shift + click right mouse button emulation as it looks like is already handled with the apple key.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@272 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Franck Charlet
2008-10-16 23:07:26 +00:00
parent a453821325
commit 0f74b81151
5 changed files with 40 additions and 156 deletions

View File

@@ -161,20 +161,7 @@ void Get_input(void)
//Clic sur un des boutons de la souris
switch(event.button.button)
{
#ifdef __macosx__
// fc: poor poor mac users with a single button mouse...
// emulated with the shifts keys
case SDL_BUTTON_LEFT:
INPUT_Nouveau_Mouse_K = 1;
if(SDL_GetModState() & KMOD_LSHIFT ||
SDL_GetModState() & KMOD_RSHIFT)
{
INPUT_Nouveau_Mouse_K = 2;
}
break;
#else
case SDL_BUTTON_LEFT: INPUT_Nouveau_Mouse_K = 1; break;
#endif
case SDL_BUTTON_MIDDLE: // Pour SDL, 2 = clic milieu. Pour nous c'est le clic droit
case SDL_BUTTON_RIGHT: // Clic droit SDL, clic droit pour nous aussi ( pour le moment en tout cas)
INPUT_Nouveau_Mouse_K = 2;