mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-03 07:11:56 +00:00
Warniof the sceIo defAction is used when stating.
This is broken anyway so skipping for now.
This commit is contained in:
parent
cd1d4367bf
commit
042e515037
@ -204,6 +204,14 @@ void __IoInit() {
|
||||
pspFileSystem.Mount("flash1:", flash);
|
||||
}
|
||||
|
||||
void __IoDoState(PointerWrap &p) {
|
||||
// TODO: defAction is hard to save, and not the right way anyway.
|
||||
// Should probbly be an enum and on the FileNode anyway.
|
||||
if (defAction != NULL) {
|
||||
WARN_LOG(HLE, "FIXME: Savestate failure: deferred IO not saved yet.");
|
||||
}
|
||||
}
|
||||
|
||||
void __IoShutdown() {
|
||||
defAction = 0;
|
||||
defParam = 0;
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "sceKernel.h"
|
||||
|
||||
void __IoInit();
|
||||
void __IoDoState(PointerWrap &p);
|
||||
void __IoShutdown();
|
||||
KernelObject *__KernelFileNodeObject();
|
||||
KernelObject *__KernelDirListingObject();
|
||||
|
@ -163,6 +163,7 @@ void __KernelDoState(PointerWrap &p)
|
||||
__SslDoState(p);
|
||||
__UmdDoState(p);
|
||||
__UsbDoState(p);
|
||||
__IoDoState(p);
|
||||
|
||||
__PPGeDoState(p);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user