| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-16 | file_sys/bis_factory: Eliminate usage of the global system accessor | Lioncash | |
| 2020-09-14 | Merge pull request #4636 from lioncash/kernel-hle | bunnei | |
| service: Remove two usages of the global system accessor | |||
| 2020-09-11 | Merge pull request #4634 from lioncash/blocking | bunnei | |
| bsd: Resolve a few warnings | |||
| 2020-09-11 | Merge pull request #4310 from ogniK5377/apollo-1-prod | bunnei | |
| audio_core: Apollo Part 1, AudioRenderer refactor | |||
| 2020-09-10 | Merge pull request #4597 from Morph1984/mjolnir-p2 | bunnei | |
| Project Mjölnir: Part 2 - Controller Applet | |||
| 2020-09-07 | service: Remove two usages of the global system accessor | Lioncash | |
| Removes more instances of reliance on global state. | |||
| 2020-09-07 | bsd: Resolve unused value within SendToImpl | Lioncash | |
| Previously the address provided to SendToImpl would never be propagated to SendTo(). This fixes that. | |||
| 2020-09-07 | bsd: Resolve sign comparison warnings | Lioncash | |
| 2020-09-07 | sockets_translate: Make use of designated initializers | Lioncash | |
| Same behavior, less typing. | |||
| 2020-09-07 | blocking_worker: Make use of templated lambda | Lioncash | |
| We can simplify this a little by explicitly specifying the typename for the lambda function. | |||
| 2020-09-07 | blocking_worker: Resolve -Wdocumentation warning | Lioncash | |
| 2020-09-05 | Merge pull request #4397 from ReinUsesLisp/bsd | bunnei | |
| services: Implement most of bsd:s and GetCurrentIpAddress from nifm | |||
| 2020-09-04 | hid: Implement MergeSingleJoyasDualJoy | Morph | |
| - Used in multiple games such as Super Mario Odyssey. | |||
| 2020-09-04 | Address feedback | Morph | |
| 2020-09-04 | applets/controller: Set min_players to have a minimum value of 1. | Morph | |
| - Some games like Shipped have a minimum requirement of 0 connected players and is undesired behavior. We must require a minimum of 1 player connected regardless of what games may ask. | |||
| 2020-09-04 | applets/controller: Implement fallback applet for the SDL frontend | Morph | |
| Implement the fallback applet for the SDL frontend, connecting only the minimum amount of players required. | |||
| 2020-09-04 | applets/controller: Implement "Explain Text" | Morph | |
| "Explain Text" is additional text that is shown for each player in the controller applet. | |||
| 2020-09-04 | Project Mjölnir: Part 2 - Controller Applet | Morph | |
| Co-authored-by: Its-Rei <kupfel@gmail.com> | |||
| 2020-09-02 | Merge pull request #4568 from lioncash/fsp | bunnei | |
| fsp_srv: Resolve -Wmaybe_uninitialized warning in OpenSaveDataFileSystem() | |||
| 2020-09-02 | Merge pull request #4564 from lioncash/file-include | bunnei | |
| file_sys: Replace inclusions with forward declarations where applicable | |||
| 2020-08-29 | yuzu: Add motion and touch configuration | FearlessTobi | |
| 2020-08-26 | controllers/npad: Fix inconsistencies with controller connection statuses | Morph | |
| 2020-08-26 | controllers/npad: Fix LibNX controller connection statuses | Morph | |
| This allows homebrew applications to be able to properly detect connected controllers. | |||
| 2020-08-26 | controllers/npad: Fix LedPattern for P1-4 | Morph | |
| 2020-08-26 | Project Mjölnir: Part 1 | Morph | |
| Co-authored-by: James Rowe <jroweboy@gmail.com> Co-authored-by: Its-Rei <kupfel@gmail.com> | |||
| 2020-08-23 | fsp_srv: Resolve -Wunused-but-set-variable warning | Lioncash | |
| We can just log out the parameters in the meantime. | |||
| 2020-08-23 | file_sys: Replace inclusions with forward declarations where applicable | Lioncash | |
| Same behavior, minus unnecessary inclusions where not necessary. | |||
| 2020-08-23 | fsp_srv: Resolve -Wmaybe_uninitialized warning in OpenSaveDataFileSystem() | Lioncash | |
| Initialize id to a deterministic value and also mark the unreachable cases in the switch with UNREACHABLE(). | |||
| 2020-08-16 | common/fileutil: Convert namespace to Common::FS | Lioncash | |
| Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing. | |||
| 2020-08-15 | Merge pull request #4526 from lioncash/core-semi | bunnei | |
| core: Resolve several -Wextra-semi warnings | |||
| 2020-08-15 | Merge pull request #4527 from lioncash/pessimizing2 | bunnei | |
| software_keyboard: Resolve a pessimizing move warning | |||
| 2020-08-14 | time_zone_content_manager: Collapse auto and default case | Lioncash | |
| Prevents a useless self-assignment from occurring. | |||
| 2020-08-14 | software_keyboard: Resolve a pessimizing move warning | Lioncash | |
| A std::vector created in place like this is already an rvalue and doesn't need to be moved. | |||
| 2020-08-14 | core: Resolve several -Wextra-semi warnings | Lioncash | |
| We can amend one of the cascade macros to require semicolons in order to compile. In other cases, we can just remove the superfluous semicolons. | |||
| 2020-08-13 | General: Tidy up clang-format warnings part 2 | Lioncash | |
| 2020-08-07 | Merge pull request #4457 from ogniK5377/SetScreenShotPermission | bunnei | |
| am: Unstub SetScreenShotPermission | |||
| 2020-08-07 | common/concepts: Rename IsBaseOf to DerivedFrom | Lioncash | |
| This makes it more inline with its currently unavailable standardized analogue std::derived_from. While we're at it, we can also make the template match the requirements of the standardized variant as well. | |||
| 2020-08-05 | Merge pull request #4475 from lioncash/bqueue | bunnei | |
| buffer_queue: Make use of designated initializers/std::nullopt where applicable | |||
| 2020-08-04 | Merge pull request #4401 from ogniK5377/GetIndirectLayerImageRequiredMemoryInfo | bunnei | |
| vi: IApplicationDisplayService:GetIndirectLayerImageRequiredMemoryInfo | |||
| 2020-08-04 | Merge pull request #4430 from bunnei/new-gpu-vmm | bunnei | |
| hle: nvdrv: Rewrite of GPU memory management. | |||
| 2020-08-04 | Merge pull request #4481 from lioncash/cpp-dep | David | |
| yuzu: Resolve C++20 deprecation warnings related to lambda captures | |||
| 2020-08-04 | Merge pull request #4474 from lioncash/hle-profile | David | |
| profile_manager: Make use of designated initializers | |||
| 2020-08-03 | Merge pull request #4456 from Morph1984/stub-really-long-fs-func | bunnei | |
| fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute | |||
| 2020-08-03 | Merge pull request #4482 from lioncash/ldr-sign | bunnei | |
| service/ldr: Resolve sign mismatch warnings | |||
| 2020-08-03 | yuzu: Resolve C++20 deprecation warnings related to lambda captures | Lioncash | |
| C++20 deprecates capturing the this pointer via the '=' capture. Instead, we replace it or extend the capture specification. | |||
| 2020-08-03 | service/ldr: Resolve sign mismatch warnings | Lioncash | |
| We were performing an int < size_t comparison. We can just correct the type of the induction variable. | |||
| 2020-08-03 | buffer_queue: Make use of std::nullopt | Lioncash | |
| Allows compilers to eliminate unnecessary zeroing out of the optional's buffer. | |||
| 2020-08-03 | buffer_queue: Make use of designated initializers | Lioncash | |
| 2020-08-03 | profile_manager: Make use of std::nullopt | Lioncash | |
| Allows some implementations to completely avoid unnecessarily zeroing out the internal buffer. | |||
| 2020-08-03 | profile_manager: Make use of designated initializers | Lioncash | |
| More compact code. | |||
