Add pfat0: as another synonym for ms0:

Might fix Fired Up save issues as reported in #1290.
This commit is contained in:
Henrik Rydgard 2013-10-13 13:52:48 +02:00
parent 3af5a759b4
commit 40ee00bf46

View File

@ -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;