diff --git a/src/hardware/hw_main.c b/src/hardware/hw_main.c index c8905c689..5f1d3e74f 100644 --- a/src/hardware/hw_main.c +++ b/src/hardware/hw_main.c @@ -3640,7 +3640,7 @@ static void HWR_DrawDropShadow(mobj_t *thing, fixed_t scale) // hitlag vibrating if (thing->hitlag > 0) { - fixed_t mul = thing->hitlag * (FRACUNIT / 20); + fixed_t mul = thing->hitlag * (FRACUNIT / 10); if (leveltime & 1) { @@ -4925,7 +4925,7 @@ static void HWR_ProjectSprite(mobj_t *thing) // hitlag vibrating if (thing->hitlag > 0) { - fixed_t mul = thing->hitlag * (FRACUNIT / 20); + fixed_t mul = thing->hitlag * (FRACUNIT / 10); if (leveltime & 1) { diff --git a/src/hardware/hw_md2.c b/src/hardware/hw_md2.c index 0a39092f4..f68771a1b 100644 --- a/src/hardware/hw_md2.c +++ b/src/hardware/hw_md2.c @@ -1361,7 +1361,7 @@ boolean HWR_DrawModel(gl_vissprite_t *spr) // hitlag vibrating if (spr->mobj->hitlag > 0) { - fixed_t mul = spr->mobj->hitlag * (FRACUNIT / 20); + fixed_t mul = spr->mobj->hitlag * (FRACUNIT / 10); if (leveltime & 1) { diff --git a/src/r_things.c b/src/r_things.c index d337bd219..9788d916b 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -1467,7 +1467,7 @@ static void R_ProjectSprite(mobj_t *thing) // hitlag vibrating if (thing->hitlag > 0) { - fixed_t mul = thing->hitlag * (FRACUNIT / 20); + fixed_t mul = thing->hitlag * (FRACUNIT / 10); if (leveltime & 1) {