From be7c2d9dd31feb33558c72799ef77faf2fcafb76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustaf=20Alh=C3=A4ll?= Date: Sun, 29 Dec 2024 12:57:42 +0100 Subject: [PATCH] Reset target focus in P_LoadLevel instead --- src/g_game.c | 4 ---- src/p_setup.c | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/g_game.c b/src/g_game.c index 6f02fde3c..175e757ec 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -1867,10 +1867,6 @@ void G_DoLoadLevel(boolean resetplayer) if (gamestate == GS_INTERMISSION) Y_EndIntermission(); - // clear the target on map change, since the object will be invalidated - P_SetTarget(&ticcmd_ztargetfocus[0], NULL); - P_SetTarget(&ticcmd_ztargetfocus[1], NULL); - // cleanup if (titlemapinaction == TITLEMAP_LOADING) { diff --git a/src/p_setup.c b/src/p_setup.c index 93286219d..a62e287ac 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -7853,6 +7853,10 @@ boolean P_LoadLevel(boolean fromnetsave, boolean reloadinggamestate) maptol = mapheaderinfo[gamemap-1]->typeoflevel; gametyperules = gametypedefaultrules[gametype]; + // clear the target on map change, since the object will be invalidated + P_SetTarget(&ticcmd_ztargetfocus[0], NULL); + P_SetTarget(&ticcmd_ztargetfocus[1], NULL); + CON_Drawer(); // let the user know what we are going to do I_FinishUpdate(); // page flip or blit buffer