From a9e6154bce4cb85af5ada13848efb2e0db7fe4ed Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Tue, 1 Feb 2011 08:50:42 +0000 Subject: * Fix error in error message when UI fails to load --- src/client/cl_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/cl_ui.c b/src/client/cl_ui.c index ef53ebd8..6b748cf7 100644 --- a/src/client/cl_ui.c +++ b/src/client/cl_ui.c @@ -1095,7 +1095,7 @@ 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" ); + Cmd_ExecuteString( "path /\n" ); Com_Error( ERR_FATAL, "VM_Create on UI failed" ); } -- cgit