Fix erroneous call to M_StringJoin
This commit is contained in:
parent
e63a8d5e3b
commit
e76b5678bf
1 changed files with 1 additions and 1 deletions
|
|
@ -439,7 +439,7 @@ static char *CheckDirectoryHasIWAD(char *dir, char *iwadname)
|
|||
else
|
||||
{
|
||||
char sep[] = {DIR_SEPARATOR, '\0'};
|
||||
filename = M_StringJoin(dir, sep, iwadname);
|
||||
filename = M_StringJoin(dir, sep, iwadname, NULL);
|
||||
}
|
||||
|
||||
if (M_FileExists(filename))
|
||||
|
|
|
|||
Loading…
Reference in a new issue