- Oct 16, 2018
-
-
Lioncash authored
The constructor alone is pretty large, the reading code should be split into its consistuent parts to make it easier to understand it without having to build a mental model of a 300+ line function.
-
Lioncash authored
Each header is 512 bytes in size, which is kind of an excessive amount to copy all the time when it's possible to avoid doing so.
-
- Oct 13, 2018
-
-
Zach Hilman authored
Avoids printing live keys in the general log.
-
- Sep 19, 2018
-
-
Lioncash authored
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.
-
- Sep 15, 2018
-
-
fearlessTobi authored
-
- Sep 04, 2018
-
-
Zach Hilman authored
-
Zach Hilman authored
Now display correct error instead of catch-all MissingProgramNCA
-
Zach Hilman authored
Fixes base game read errors
-
Zach Hilman authored
-
Lioncash authored
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
-
- Aug 23, 2018
-
-
Zach Hilman authored
This is needed because the title IDs of update NCAs will not use the update title ID. The only sure way to tell is to look for a partition with BKTR crypto.
-
Zach Hilman authored
-
- Aug 10, 2018
-
-
Zach Hilman authored
Full list of new errors and descriptions in core/loader/loader.h
-
- Aug 07, 2018
-
-
Zach Hilman authored
-
- Aug 04, 2018
-
-
Zach Hilman authored
-
- Aug 01, 2018
-
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
- Jul 27, 2018
-
-
Zach Hilman authored
-
- Jul 19, 2018
-
-
Lioncash authored
Gets rid of unnecessary atomic reference count incrementing and decrementing.
-
Zach Hilman authored
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
-
- Jul 08, 2018
-
- Jul 06, 2018
-
-
Zach Hilman authored
* 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
-