summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/file_sdmc.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Kernel/File: Fixed file read/write hwtestsSubv2014-12-081-3/+6
| | | | | | The 3DS allows the user to read from files opened with the Write access modifier, even if he did not specify the Read access modifier. Open the files in binary mode so that we can prevent CR/LF problems in Windows, where a line-end is replaced by these two bytes instead of just 0xA, this was causing problems with the GetSize test
* FileSys: Updated backend code to use FileSys::Path instead of string for paths.bunnei2014-11-181-2/+2
|
* FileSys: split the constructor into an Open method, in order to notify the opener something went wrong.Emmanuel Gil Peyrot2014-10-061-14/+24
| | | | Kernel: Return an invalid handle to OpenFile when it failed to open.
* FileSys/Kernel: Implement SetSize service call for File objects.Emmanuel Gil Peyrot2014-10-061-0/+11
|
* FileSys: Add forgotten docstrings.Emmanuel Gil Peyrot2014-10-061-0/+23
|
* Fix warnings in core and commonLioncash2014-09-281-1/+1
|
* Core: Add a passthrough backend for the filesystem, exposed as SDMC.Emmanuel Gil Peyrot2014-09-171-0/+63