summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/errors.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-01service: filesystem: Return proper error codes for CreateFileMorph1-0/+1
This improves the accuracy of CreateFile by returning the correct error codes on certain conditions (parent directory does not exist, path already exists). This fixes saving and the loading of existing saves in New Pokemon Snap
2019-03-11set_sys: Use official nintendo version stringZach Hilman1-0/+3
2018-11-16file_sys/errors: Remove currently unused filesystem error codesLioncash1-10/+0
Rather than keeping around unused values, we can just introduce them as needed.
2018-11-16file_sys/errors: Get rid of the ErrCodes namespaceLioncash1-17/+5
There's no real point to keeping the separate enum around, especially given the name of the error code itself is supposed to document what the value actually represents.
2018-11-16file_sys/errors: Extract FS-related error codes to file_sys/errors.hLioncash1-1/+8
Keeps filesystem-related error codes in one spot.
2018-07-21file_sys/errors: Remove redundant object constructor callsLioncash1-8/+8
Given we're already constructing the error code, we don't need to call the constructor inside of it.
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-1/+1
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
2018-07-17General Filesystem and Save Data Fixes (#670)Zach Hilman1-0/+2
2018-06-19Services/FS: Return the correct error code when trying to mount a nonexistent savedata.Subv1-0/+1
2018-03-04FS: Use the correct error code when trying to open files that don't exist.Subv1-22/+3
2017-11-01hle: Use Switch formatted result codes.bunnei1-56/+10
2017-05-25FileSys: Move all result description to errors.hYuri Kunde Schlesner1-43/+84
2017-02-13file_sys: add Self NCCH archivewwylele1-0/+10
2016-11-29FileSys: Implement OtherSaveDatawwylele1-0/+3
2016-11-19FileSys: add SDMCWriteOnlyArchivewwylele1-0/+2
2016-11-19FileSys: add SDMCArchivewwylele1-0/+9
Now DiskArchive only serves for SDMC, then it should be just a "SDMCArchive"
2016-11-19FileSys: add SaveDataArchivewwylele1-0/+29
The error checking of SaveDataArchive is completely different from DiskArchive, so it has to be a new class instead of a subclass of DiskArchive.