PSP2: Add dummy VDirOpen for now

This commit is contained in:
Jeffrey Pfau 2015-07-07 00:38:25 -07:00
parent e0e6235657
commit c4800792ec
1 changed files with 5 additions and 0 deletions

View File

@ -111,3 +111,8 @@ bool _vfsceSync(struct VFile* vf, const void* buffer, size_t size) {
// TODO: Get the right device
return sceIoSync("cache0:", 0) >= 0;
}
struct VDir* VDirOpen(const char* path) {
// TODO
return 0;
}