1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-29 23:46:31 -05:00

Merge pull request #559 from Subv/mount_savedata

Services/FS: Return the correct error code when trying to mount a nonexistent savedata.
This commit is contained in:
bunnei
2018-07-11 20:21:52 -07:00
committed by GitHub
2 changed files with 12 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ namespace FileSys {
namespace ErrCodes {
enum {
NotFound = 1,
SaveDataNotFound = 1002,
};
}