From ebf3877cdaba892d2677ec041653cd4a0169bbf1 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 2 Dec 2022 21:22:22 +0300 Subject: [PATCH] engine: common: throw an error message into log in normal mode too! --- engine/common/system.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/common/system.c b/engine/common/system.c index 72ae9197..7da49d88 100644 --- a/engine/common/system.c +++ b/engine/common/system.c @@ -435,6 +435,7 @@ void Sys_Error( const char *error, ... ) Wcon_ShowConsole( false ); #endif MSGBOX( text ); + Sys_Print( text ); } else { @@ -445,7 +446,7 @@ void Sys_Error( const char *error, ... ) Sys_Print( text ); // print error message Sys_WaitForQuit(); } - + Sys_Quit(); }