From 6fe087460642d243356349d8612daa5c722ec9fa Mon Sep 17 00:00:00 2001 From: GoldenTails Date: Sun, 21 Jun 2020 23:21:42 -0500 Subject: [PATCH] Stop resetting cusval cause that's annoying --- src/p_spec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/p_spec.c b/src/p_spec.c index 1f32c9eda..e45220345 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -2979,10 +2979,9 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec) else { // straight ahead - if (titlemapinaction) - titlemapcameraref->cusval = 0; - else + if (!titlemapinaction) mo->player->awayviewaiming = 0; + // don't do cusval cause that's annoying } } break;