summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/program_metadata.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-20file-sys: Default heavy-weight class destructors in the cpp fileLioncash1-0/+4
Several classes have a lot of non-trivial members within them, or don't but likely should have the destructor defaulted in the cpp file for future-proofing/being more friendly to forward declarations. Leaving the destructor unspecified allows the compiler to inline the destruction code all over the place, which is generally undesirable from a code bloat perspective.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-1/+1
2018-09-04file_sys: Replace includes with forward declarations where applicableLioncash1-1/+4
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
2018-08-10loader: Add more descriptive errorsZach Hilman1-6/+6
Full list of new errors and descriptions in core/loader/loader.h
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-27/+16
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-16/+27
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
2018-07-06Virtual Filesystem (#597)Zach Hilman1-27/+16
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
2018-07-03Update clang formatJames Rowe1-1/+1
2018-07-03Rename logging macro back to LOG_*James Rowe1-18/+18
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-9/+9
This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on).
2018-04-25file-sys: Move logging macros over to the new fmt-capable onesLioncash1-20/+19
2018-02-26file_sys: Style tweaksshinyquagsire231-3/+0
Asdf
2018-02-25file_sys: Add support for parsing NPDM filesshinyquagsire231-0/+117