summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/patch_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-20file-sys: Default heavy-weight class destructors in the cpp fileLioncash1-0/+2
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-2/+2
2018-09-06file_sys/patch_manager: Add missing includesLioncash1-0/+4
These includes were previously being satisfied indirectly.
2018-09-04bktr: Fix bucket overlap errorZach Hilman1-0/+3
2018-09-04patch_manager: Centralize Control-type NCA parsingZach Hilman1-20/+55
2018-09-04game_list: Fix version display on non-NAND titlesZach Hilman1-6/+22
2018-09-04bktr: Add logging on successful patchZach Hilman1-5/+17
2018-09-04bktr: Fix missing includes and optimize styleZach Hilman1-19/+16
2018-09-04file_sys: Add class to manage game patchesZach Hilman1-0/+90
Right now only includes Updates, but should eventually contain all of the other patches we need.