Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-04 | bktr: Implement IVFC offset shifting | Zach Hilman | |
Fixes base game read errors | |||
2018-09-04 | bktr: Fix missing includes and optimize style | Zach Hilman | |
2018-09-04 | main: Make game updates installable | Zach Hilman | |
2018-09-04 | game_list: Display patch names and versions on list | Zach Hilman | |
2018-09-04 | loader: Add BKTR-specific error messages and codes | Zach Hilman | |
2018-09-04 | loader: Ignore patches on NRO and DRD | Zach Hilman | |
2018-09-04 | patch_manager: Add usages of patches to ExeFS | Zach Hilman | |
2018-09-04 | file_sys: Add class to manage game patches | Zach Hilman | |
Right now only includes Updates, but should eventually contain all of the other patches we need. | |||
2018-09-04 | file_sys: Add BKTR patching mechanism | Zach Hilman | |
2018-09-04 | content_archive: Add BKTR header parsing to NCA | Zach Hilman | |
2018-09-04 | registration: Add RegisteredCacheUnion | Zach Hilman | |
Aggregates multiple caches into one interface | |||
2018-09-04 | game_list: Use RegisteredCacheUnion for installed | Zach Hilman | |
Reduces code | |||
2018-09-04 | aes_util: Fix error involving reads of less than 0x10 | Zach Hilman | |
Issues with block size are fixed by making all reads minimum length of 0x10 | |||
2018-09-04 | main: Only show DRD deprecation warning once | Zach Hilman | |
2018-09-04 | control_metadata: Use alternate language names if AmericanEnglish isn't ↵ | Zach Hilman | |
available | |||
2018-09-04 | card_image: Add program title ID getter | Zach Hilman | |
2018-09-04 | qt: Add deprecation warnings for DRD format | Zach Hilman | |
2018-09-04 | registration: Fix NSP installation errors | Zach Hilman | |
2018-09-04 | nsp: Comply with style and performance guidelines | Zach Hilman | |
2018-09-04 | qt: Add UI support for NSP files | Zach Hilman | |
2018-09-04 | registration: Add support for installing NSP files | Zach Hilman | |
2018-09-04 | loader: Add AppLoader for NSP files | Zach Hilman | |
2018-09-04 | card_image: Parse XCI secure partition with NSP | Zach Hilman | |
Eliminated duplicate code and adds support for Rev1+ carts | |||
2018-09-04 | file_sys: Add Nintendo Submission Package (NSP) | Zach Hilman | |
2018-09-04 | drd: Load title ID from program metadata | Zach Hilman | |
Previously only loaded from control metadata | |||
2018-09-04 | loader: Add NSP file type and NSP-specific errors | Zach Hilman | |
2018-09-04 | key_manager: Avoid autogeneration if key exists | Zach Hilman | |
2018-09-04 | Merge pull request #1238 from lioncash/explicit | bunnei | |
common/logging: Minor changes | |||
2018-09-04 | Merge pull request #1237 from degasus/optimizations | bunnei | |
Optimizations | |||
2018-09-04 | Merge pull request #1223 from DarkLordZach/custom-nand-sd-dirs | bunnei | |
file_sys: Allow for custom NAND/SD directories | |||
2018-09-04 | Merge pull request #1232 from lioncash/copy | bunnei | |
gl_shader_decompiler: Use used_shaders member variable directly within GenerateDeclarations() | |||
2018-09-04 | Merge pull request #1235 from lioncash/forward-decl | bunnei | |
file_sys: Replace includes with forward declarations where applicable | |||
2018-09-04 | Merge pull request #1236 from degasus/microprofile | bunnei | |
Update microprofile scopes. | |||
2018-09-04 | Merge pull request #1230 from lioncash/ssl | bunnei | |
ssl: Move SSL class to cpp file | |||
2018-09-04 | common/logging: Amend documentation comments | Lioncash | |
Multi-line doc comments still need the '<' after the ///, otherwise it's treated as a regular comment and makes the original doc comment broken in viewers, IDEs, etc. While we're at it, also fix some typos in the comments. | |||
2018-09-04 | common/logging/filter: Replace C-style case with C++ static_cast | Lioncash | |
2018-09-04 | common/logging/filter: Make constructor explicit | Lioncash | |
Implicit conversions aren't desirable here. | |||
2018-09-04 | core: Use a raw pointer in GetGPUDebugContext. | Markus Wick | |
This helper is called very often. The memory ownership shall not be transfered, so just return the raw pointer. | |||
2018-09-04 | command_processor: Use std::array for bound_engines. | Markus Wick | |
subchannel is a 3 bit field. So there must not be more than 8 bound engines. And using a hashmap for up to 8 values is a bit overpowered. | |||
2018-09-04 | Update microprofile scopes. | Markus Wick | |
Blame the subsystems which deserve the blame :) The updated list is not complete, just the ones I've spotted on random sampling the stack trace. | |||
2018-09-03 | file_sys: Replace includes with forward declarations where applicable | Lioncash | |
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed. | |||
2018-09-03 | Merge pull request #1231 from lioncash/global | bunnei | |
service: Migrate global named port map to the KernelCore class | |||
2018-09-03 | qt: Add message about not moving contents on dir change | Zach Hilman | |
2018-09-03 | qt: Add UI options to change NAND/SD dirs | Zach Hilman | |
2018-09-03 | settings: Save and load NAND/SD dirs from config | Zach Hilman | |
2018-09-02 | gl_shader_decompiler: Use used_shaders member variable directly within ↵ | Lioncash | |
GenerateDeclarations() Using the getter function intended for external code here makes an unnecessary copy of the already-accessible used_shaders vector. | |||
2018-09-02 | vfs_real: Forward declare IOFile | Lioncash | |
Eliminates the need to rebuild some source files if the file_util header ever changes. This also uncovered some indirect inclusions, which have also been fixed. | |||
2018-09-02 | service: Migrate global named port map to the KernelCore class | Lioncash | |
Now that we have a class representing the kernel in some capacity, we now have a place to put the named port map, so we move it over and get rid of another piece of global state within the core. | |||
2018-09-02 | ssl: Move SSL class to cpp file | Lioncash | |
This isn't required to be visible to anything outside of the main source file, and will eliminate needing to rebuild anything else including the header if the SSL class needs to be changed in the future. | |||
2018-09-02 | Merge pull request #1213 from DarkLordZach/octopath-fs | bunnei | |
filesystem/maxwell_3d: Various changes to boot Project Octopath Traveller |