From 32068d8090390eab035a4909267f0a3e219363d4 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 27 Aug 2021 18:09:07 +0300 Subject: [PATCH] client: fix wrong paused icon --- 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 ae008e2e..64dda1d2 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -988,7 +988,7 @@ static void CL_DrawLoadingOrPaused( qboolean paused, float percent ) { ref.dllFuncs.Color4ub( 255, 255, 255, 255 ); ref.dllFuncs.GL_SetRenderMode( kRenderTransTexture ); - ref.dllFuncs.R_DrawStretchPic( x, y, width, height, 0, 0, 1, 1, cls.loadingBar ); + ref.dllFuncs.R_DrawStretchPic( x, y, width, height, 0, 0, 1, 1, cls.pauseIcon ); } }