From 154dd5c9aeefa9704cfc3ce8828c0c3c5a93f574 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 3 Dec 2019 02:17:12 +0300 Subject: [PATCH] engine: console: temporarily disable updating screen when something is printed to console, because it can mess up with textures --- engine/client/console.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/client/console.c b/engine/client/console.c index 8d10de88..0eb15bcb 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -1315,12 +1315,16 @@ void Con_Print( const char *txt ) Host_InputFrame(); } + // FIXME: disable updating screen, because when texture is bound any console print + // can re-bound it to console font texture +#if 0 if( !inupdate ) { inupdate = true; SCR_UpdateScreen (); inupdate = false; } +#endif } }