mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +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);
|
||||
|
||||
if (!m_noprescale)
|
||||
{
|
||||
x *= 3;
|
||||
y *= 2;
|
||||
}
|
||||
if (x | y)
|
||||
{
|
||||
PostMouseMove (m_noprescale ? x : x << 2, -y);
|
||||
PostMouseMove (x, -y);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue