Services/FS: Return the correct error code when trying to mount a nonexistent savedata.

This commit is contained in:
Subv 2018-06-12 13:42:04 -05:00
parent 09b8a16414
commit 5f57a70a7d
2 changed files with 12 additions and 2 deletions

View file

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