- fixed explosion distance of Hexen Cleric's firestorm weapon.

This commit is contained in:
Christoph Oelckers 2020-09-27 16:30:06 +02:00
parent 02afa90202
commit 9dd26c8196

View file

@ -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);
}
}