Revert "Rumble rumble"

This reverts commit c82ac33c0c.
This commit is contained in:
James R 2021-04-06 02:43:26 -07:00
parent c4af0c2374
commit 1eca138b21
2 changed files with 1 additions and 9 deletions

View file

@ -301,7 +301,6 @@ extern struct quake
{
// camera offsets and duration
fixed_t x,y,z;
angle_t roll;
UINT16 time;
// location, radius, and intensity...

View file

@ -657,17 +657,10 @@ void P_Ticker(boolean run)
quake.z = M_RandomRange(-ir,ir);
if (cv_windowquake.value)
I_CursedWindowMovement(FixedInt(quake.x), FixedInt(quake.y));
ir >>= 2;
ir = M_RandomRange(-ir,ir);
if (ir < 0)
ir = ANGLE_MAX - FixedAngle(-ir);
else
ir = FixedAngle(ir);
quake.roll = ir;
--quake.time;
}
else
quake.x = quake.y = quake.z = quake.roll = 0;
quake.x = quake.y = quake.z = 0;
if (metalplayback)
G_ReadMetalTic(metalplayback);