From a842d96a48c6f979d6c89027ffb38c4474f7e299 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Tue, 11 Oct 2016 23:35:31 +0100 Subject: [PATCH] Forgot to commit this change when moving everything over to shortmarioshifts. --- src/r_things.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/r_things.c b/src/r_things.c index 18ec1570c..13688740d 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -1322,7 +1322,7 @@ static void R_ProjectSprite(mobj_t *thing) if (shortmarioshift) { yscale >>= shortmarioshift; - this_scale /= 2; + this_scale >>= shortmarioshift; } if ((thing->flags2 & MF2_LINKDRAW) && thing->tracer) // toast 16/09/16 (SYMMETRY) @@ -1386,7 +1386,7 @@ static void R_ProjectSprite(mobj_t *thing) } if (shortmarioshift) - this_scale *= 2; + this_scale <<= shortmarioshift; if (thing->subsector->sector->cullheight) {