From 91f845c335e6fb1627e25b27fb8fe1c628b5b80e Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 30 Sep 2021 16:43:21 +0300 Subject: [PATCH] engine: client: fix paused icon drawn when levelshots are disabled --- engine/client/cl_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_game.c b/engine/client/cl_game.c index 64dda1d2..3ea9759b 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -966,7 +966,7 @@ static void CL_DrawLoadingOrPaused( qboolean paused, float percent ) SPR_AdjustSizei( &x, &y, &width, &height ); - if( !paused && cl_allow_levelshots->value ) + if( !paused ) { float step, s2;