From 1f5f00da3444601afe04935d29a4e2d64692311f Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 19 Jul 2018 16:07:14 +0100 Subject: [PATCH] Acommodate MF2_SHADOW in first person view --- src/k_kart.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index d057a813..4af39999 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -5509,9 +5509,11 @@ static void K_drawKartFirstPerson(void) { if (stplyr->speed < FixedMul(stplyr->runspeed, stplyr->mo->scale) && (leveltime & 1) && !splitscreen) y++; - // this isn't EXPLICITLY right, it just gets the result we want, but i'm too lazy to look up the right way to do it - if (stplyr->mo->frame & FF_TRANSMASK) - splitflags |= (stplyr->mo->frame & FF_TRANSMASK); // ditto + // the following isn't EXPLICITLY right, it just gets the result we want, but i'm too lazy to look up the right way to do it + if (stplyr->mo->flags2 & MF2_SHADOW) + splitflags |= FF_TRANS80; + else if (stplyr->mo->frame & FF_TRANSMASK) + splitflags |= (stplyr->mo->frame & FF_TRANSMASK); } if (cmd->driftturn > 400) // strong left turn