--- ioquake3_1.34-rc3/code/tools/asm/cmdlib.c 2006-11-28 23:05:32.000000000 +0100 +++ ioquake3_1.34-rc3/code/tools/asm/cmdlib.c 2007-05-24 16:45:06.000000000 +0200 @@ -312,8 +312,6 @@ char *ExpandArg (const char *path) char *ExpandPath (const char *path) { static char full[1024]; - if (!qdir) - Error ("ExpandPath called without qdir set"); if (path[0] == '/' || path[0] == '\\' || path[1] == ':') { strcpy( full, path ); return full; @@ -325,8 +323,6 @@ char *ExpandPath (const char *path) char *ExpandGamePath (const char *path) { static char full[1024]; - if (!qdir) - Error ("ExpandGamePath called without qdir set"); if (path[0] == '/' || path[0] == '\\' || path[1] == ':') { strcpy( full, path ); return full;