- Oct 14, 2018
-
-
Zach Hilman authored
Falls back to title ID + 0x1000, which is what HOS does.
-
- 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.
-
Lioncash authored
There's no need to indent the code here, given the if case contains a return statement at the end of it.
-
Lioncash authored
This was used in two different translation units (deconstructed_rom_directory and patch_manager). This means we'd be pointlessly duplicating the whole array twice due to it being defined within the header.
-
- Sep 04, 2018
-
-
Zach Hilman authored
-
- Aug 12, 2018
-
-
Zach Hilman authored
-
- Jul 23, 2018
-
-
Zach Hilman authored
Cleanup Review fixes
-