summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* romfs: cache file and directory metadata tablesLiam2023-12-031-28/+55
|
* file_sys: handle null romfsLiam2023-12-021-6/+13
|
* romfs: fix extraction of single-directory rootLiam2023-11-011-29/+15
|
* fsmitm_romfsbuild: avoid unnecessary copies of vfs pointersLiam2023-10-131-3/+2
|
* romfs: use vfs_cached for romfs outputLiam2023-06-031-1/+2
|
* vfs_concat: fix time complexity of readLiam2023-05-261-1/+2
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* file_sys: fix LayeredFS error when loading some games made with… (#3602)enler2020-04-071-1/+2
| | | * fix LayeredFS error when loading some games made with the Unity
* filesys/romfs: Remove unused includesLioncash2019-11-271-0/+2
| | | | | These inclusions aren't used at all within the public interface, so they can be removed.
* filesys/romfs: Make ProcessFile and ProcessDirectory internally linkedLioncash2019-11-271-2/+3
| | | | | These functions aren't used outside of this file, so we can place them within an anonymous namespace.
* romfs: Add SingleDiscard extraction typeZach Hilman2018-12-281-0/+3
| | | | Needed for manual RomFS extraction, as Full generates an extra directory and Truncated generates variable results.
* fsmitm_romfsbuild: Extract stubs and IPS to romfs_ext dirZach Hilman2018-10-041-2/+2
|
* vfs_concat/vfs_layered: Remove friend declarations from ConcatenatedVfsFileLioncash2018-09-261-1/+1
| | | | | | 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.
* vfs_static: Remove template byte parameter from StaticVfsFileLioncash2018-09-251-1/+1
| | | | | | | | | | 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.
* fsmitm: Cleanup and modernize fsmitm portZach Hilman2018-09-241-4/+5
|
* romfs: Implement CreateRomFSZach Hilman2018-09-221-3/+17
|
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-5/+6
|
* romfs: Remove cyclic shared_ptr leak in romfs codeZach Hilman2018-08-121-4/+4
|
* RomFS ExtractionZach Hilman2018-07-281-0/+124