5717 - Gamecode can open file "" for reading

This commit is contained in:
Zack Middleton 2013-02-15 21:08:47 -06:00
parent 92573270de
commit 2e45edb550
5 changed files with 38 additions and 9 deletions

View file

@ -82,6 +82,10 @@ int Sys_Milliseconds (void) {
return 0;
}
FILE *Sys_FOpen(const char *ospath, const char *mode) {
return fopen( ospath, mode );
}
void Sys_Mkdir (char *path) {
}