re-blarg. linux doesn't take \ you idiot

This commit is contained in:
StapleButter 2018-12-11 22:17:49 +01:00
parent 1817c15cb0
commit d92c7e79df
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ FILE* melon_fopen_local(const char* fileName, const char* permissions)
int len = dirlen + 1 + filelen + 1;
char* tmp = new char[len];
strncpy(&tmp[0], EmuDirectory, dirlen);
tmp[dirlen] = '\\';
tmp[dirlen] = '/';
strncpy(&tmp[dirlen+1], fileName, filelen);
tmp[dirlen+1+filelen] = '\0';