aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/romfs.cpp
AgeCommit message (Collapse)Author
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