From e83ed6ee76cb7884bfc12e8c96920f9de0f70809 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 21 Oct 2009 18:13:17 +0000 Subject: * (bug 4311) Print file locations of relevant items to simplify troubleshooting (Amanieu) --- src/client/cl_ui.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/client') diff --git a/src/client/cl_ui.c b/src/client/cl_ui.c index 1be4f9f3..9971942f 100644 --- a/src/client/cl_ui.c +++ b/src/client/cl_ui.c @@ -1091,6 +1091,8 @@ void CL_InitUI( void ) { } uivm = VM_Create( "ui", CL_UISystemCalls, interpret ); if ( !uivm ) { + Com_Printf( "Failed to find a valid UI vm. The following paths were searched:\n" ); + Cmd_ExecuteString( "path/\n" ); Com_Error( ERR_FATAL, "VM_Create on UI failed" ); } @@ -1107,6 +1109,9 @@ void CL_InitUI( void ) { else { // init for this gamestate VM_Call( uivm, UI_INIT, (cls.state >= CA_AUTHORIZING && cls.state < CA_ACTIVE) ); + + // show where the ui folder was loaded from + Cmd_ExecuteString( "which ui/\n" ); } // reset any CVAR_CHEAT cvars registered by ui -- cgit