engine: be more verbose on why the engine is going to be shut down

This commit is contained in:
Alibek Omarov
2024-12-27 18:30:46 +03:00
parent 3576e474e6
commit a5d78ecfd7
11 changed files with 44 additions and 27 deletions

View File

@@ -1114,7 +1114,7 @@ static void GAME_EXPORT UI_ShellExecute( const char *path, const char *parms, in
Platform_ShellExecute( path, parms );
if( shouldExit )
Sys_Quit();
Sys_Quit( __func__ );
}
/*

View File

@@ -965,7 +965,7 @@ CL_Quit_f
void CL_Quit_f( void )
{
CL_Disconnect();
Sys_Quit();
Sys_Quit( "command" );
}
/*