mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 20:00:49 +00:00
- fixed explosion distance of Hexen Cleric's firestorm weapon.
This commit is contained in:
parent
02afa90202
commit
9dd26c8196
1 changed files with 6 additions and 2 deletions
|
@ -225,10 +225,14 @@ static void MouseRead ()
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_GetRelativeMouseState (&x, &y);
|
SDL_GetRelativeMouseState (&x, &y);
|
||||||
|
if (!m_noprescale)
|
||||||
|
{
|
||||||
|
x *= 3;
|
||||||
|
y *= 2;
|
||||||
|
}
|
||||||
if (x | y)
|
if (x | y)
|
||||||
{
|
{
|
||||||
PostMouseMove (m_noprescale ? x : x << 2, -y);
|
PostMouseMove (x, -y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue