Fix FSOpenFileWrapper result

This commit is contained in:
Maschell 2022-09-05 20:20:26 +02:00
parent bfa30678a0
commit f7358bc380
1 changed files with 2 additions and 1 deletions

View File

@ -281,8 +281,9 @@ FSError FSWrapper::FSOpenFileWrapper(const char *path, const char *mode, FSFileH
result = FS_ERROR_NOT_DIR;
} else if (err == ENFILE || err == EMFILE) {
result = FS_ERROR_MAX_FILES;
} else {
result = FS_ERROR_MEDIA_ERROR;
}
err = FS_ERROR_MEDIA_ERROR;
}
}