From 1cac321c004e53c657122c0502a3c000fbadeae9 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 3 Dec 2021 09:41:23 +0300 Subject: [PATCH] engine: enable filtered command buffer for dedicated to pass the tests --- engine/common/cmd.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/common/cmd.c b/engine/common/cmd.c index 62b2183d..335596dd 100644 --- a/engine/common/cmd.c +++ b/engine/common/cmd.c @@ -256,12 +256,10 @@ Cbuf_Execute void Cbuf_Execute( void ) { Cbuf_ExecuteCommandsFromBuffer( &cmd_text, true, -1 ); -#if !XASH_DEDICATED // a1ba: unlimited commands for filtered buffer per frame // I don't see any sense in restricting that at this moment // but in future we may limit this Cbuf_ExecuteCommandsFromBuffer( &filteredcmd_text, false, -1 ); -#endif } /*