diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-21 18:13:17 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:59 +0000 |
commit | e83ed6ee76cb7884bfc12e8c96920f9de0f70809 (patch) | |
tree | c7937d2a8f4ece7d65d654a1705939de27bcce7d /src/client | |
parent | 7ea9b68aff5fa0a7306e7c0f0fd138aa58a033fd (diff) |
* (bug 4311) Print file locations of relevant items to simplify troubleshooting (Amanieu)
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
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 |