aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/romfs.cpp
AgeCommit message (Collapse)Author
2018-10-04fsmitm_romfsbuild: Extract stubs and IPS to romfs_ext dirZach Hilman
2018-09-25vfs_concat/vfs_layered: Remove friend declarations from ConcatenatedVfsFileLioncash
Given these are only added to the class to allow those functions to access the private constructor, it's a better approach to just make them static functions in the interface, to make the dependency explicit.
2018-09-25vfs_static: Remove template byte parameter from StaticVfsFileLioncash
This converts it into a regular constructor parameter. There's no need to make this a template parameter on the class when it functions perfectly well as a constructor argument. This also reduces the amount of code bloat produced by the compiler, as it doesn't need to generate the same code for multiple different instantiations of the same class type, but with a different fill value.
2018-09-23fsmitm: Cleanup and modernize fsmitm portZach Hilman
2018-09-21romfs: Implement CreateRomFSZach Hilman
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi
2018-08-11romfs: Remove cyclic shared_ptr leak in romfs codeZach Hilman
2018-07-27RomFS ExtractionZach Hilman