mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Make 5th mouse button functional in Windows.
git-svn-id: https://svn.eduke32.com/eduke32@2340 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f89d73504d
commit
1e2125ce29
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ static inline void RI_ProcessMouse(const RAWMOUSE *rmouse)
|
|||
mousey -= pos.y;
|
||||
}
|
||||
|
||||
for (i = 0, mask = (1<<0); mask < (1<<8); i++, mask<<=2)
|
||||
for (i = 0, mask = (1<<0); mask <= (1<<8); i++, mask<<=2)
|
||||
{
|
||||
// usButtonFlags:
|
||||
// 1<<0: left down -> 1 / 1<<0
|
||||
|
|
Loading…
Reference in a new issue