From 40ee00bf468ce13f7c4f32ff490a452a122650b5 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sun, 13 Oct 2013 13:52:48 +0200 Subject: [PATCH] Add pfat0: as another synonym for ms0: Might fix Fired Up save issues as reported in #1290. --- Core/HLE/sceIo.cpp | 2 ++ 1 file changed, 2 insertions(+) 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;