mirror of https://github.com/mgba-emu/mgba.git
PSP2: Add dummy VDirOpen for now
This commit is contained in:
parent
e0e6235657
commit
c4800792ec
|
@ -111,3 +111,8 @@ bool _vfsceSync(struct VFile* vf, const void* buffer, size_t size) {
|
||||||
// TODO: Get the right device
|
// TODO: Get the right device
|
||||||
return sceIoSync("cache0:", 0) >= 0;
|
return sceIoSync("cache0:", 0) >= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct VDir* VDirOpen(const char* path) {
|
||||||
|
// TODO
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue