Fix loading levels that are... uh, just levels.

This commit is contained in:
Ethan Lee
2021-08-18 11:00:26 -04:00
parent 4154066c26
commit ea74b93f38
3 changed files with 7 additions and 2 deletions

View File

@@ -241,7 +241,7 @@ bool FILESYSTEM_isMounted(const char* filename)
return PHYSFS_getMountPoint(filename) != NULL;
}
static bool FILESYSTEM_exists(const char *fname)
bool FILESYSTEM_exists(const char *fname)
{
return PHYSFS_exists(fname);
}