diff --git a/Core/HLE/sceIo.cpp b/Core/HLE/sceIo.cpp index ae5ebe92fb..a5ceedb0a1 100644 --- a/Core/HLE/sceIo.cpp +++ b/Core/HLE/sceIo.cpp @@ -461,6 +461,7 @@ void __IoInit() { pspFileSystem.Mount("ms0:", memstickSystem); pspFileSystem.Mount("fatms0:", memstickSystem); pspFileSystem.Mount("fatms:", memstickSystem); + pspFileSystem.Mount("pfat0:", memstickSystem); pspFileSystem.Mount("flash0:", flash0System); __KernelListenThreadEnd(&TellFsThreadEnded); @@ -504,6 +505,7 @@ void __IoShutdown() { pspFileSystem.Unmount("ms0:", memstickSystem); pspFileSystem.Unmount("fatms0:", memstickSystem); pspFileSystem.Unmount("fatms:", memstickSystem); + pspFileSystem.Unmount("pfat0:", memstickSystem); pspFileSystem.Unmount("flash0:", flash0System); delete memstickSystem;