diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2011-02-01 08:50:42 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:57 +0000 |
commit | a9e6154bce4cb85af5ada13848efb2e0db7fe4ed (patch) | |
tree | 4684b72ea3c44aa9ebbcadfafd328cbe5cd8d9c3 | |
parent | 42bcfd40abeb44e93d729ce8826c6326e0688a7b (diff) |
* Fix error in error message when UI fails to load
-rw-r--r-- | src/client/cl_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" ); } |