mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-29 15:12:19 +00:00
Fix qw:// url stuff a little.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6200 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
c2633078ff
commit
1af4e05ab6
1 changed files with 1 additions and 1 deletions
|
@ -6211,7 +6211,7 @@ qboolean Host_RunFile(const char *fname, int nlen, vfsfile_t *file)
|
||||||
}
|
}
|
||||||
|
|
||||||
schemelen++;
|
schemelen++;
|
||||||
if (!strncmp(schemestart+schemelen, "//", schemelen))
|
if (!strncmp(schemestart+schemelen, "//", 2))
|
||||||
schemelen+=2;
|
schemelen+=2;
|
||||||
|
|
||||||
t = Z_Malloc(urilen+1);
|
t = Z_Malloc(urilen+1);
|
||||||
|
|
Loading…
Reference in a new issue