fixed right mouse procesing
This commit is contained in:
parent
4b2db873a7
commit
65ce26d93c
|
@ -274,9 +274,9 @@ static void processMouse()
|
|||
}
|
||||
|
||||
{
|
||||
input->mouse.left = mb & SDL_BUTTON_LMASK;
|
||||
input->mouse.middle = mb & SDL_BUTTON_MMASK;
|
||||
input->mouse.right = mb & SDL_BUTTON_RMASK;
|
||||
input->mouse.left = mb & SDL_BUTTON_LMASK ? 1 : 0;
|
||||
input->mouse.middle = mb & SDL_BUTTON_MMASK ? 1 : 0;
|
||||
input->mouse.right = mb & SDL_BUTTON_RMASK ? 1 : 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue