2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2025-01-11 19:05:06 +01:00

engine: common: throw an error message into log in normal mode too!

This commit is contained in:
Alibek Omarov 2022-12-02 21:22:22 +03:00
parent e97310c441
commit ebf3877cda

View File

@ -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();
}