Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-16 | Merge pull request #4663 from ReinUsesLisp/wswitch | bunnei | |
video_core: Enforce -Werror=switch | |||
2020-09-16 | Merge pull request #4662 from lioncash/factory | Rodrigo Locatti | |
bis_factory/romfs_factory: Eliminate dependencies on the global system instance | |||
2020-09-16 | file_sys/romfs_factory: Eliminate usage of the global system accessor | Lioncash | |
2020-09-16 | file_sys/bis_factory: Eliminate usage of the global system accessor | Lioncash | |
2020-09-16 | loader/nso: Remove unnecessary [[maybe_unused]] | Lioncash | |
2020-09-16 | Merge pull request #4661 from lioncash/system-loader | Rodrigo Locatti | |
core/loader: Remove dependencies on the global system instance | |||
2020-09-16 | video_core: Enforce -Werror=switch | ReinUsesLisp | |
This forces us to fix all -Wswitch warnings in video_core. | |||
2020-09-16 | core/loader: Remove dependencies on the global system instance | Lioncash | |
Now all that remains is: 18 instances in file_sys code 14 instances in GDB stub code (this can be tossed wholesale) 4 instances in HLE code 2 instances in settings code. | |||
2020-09-16 | Merge pull request #4658 from lioncash/copy3 | Rodrigo Locatti | |
nca_patch: Reduce stack usage size within SearchBucketEntry() | |||
2020-09-16 | Merge pull request #4657 from lioncash/cheatparser | Rodrigo Locatti | |
cheat_engine: Remove unnecessary system argument to CheatParser's Parse function | |||
2020-09-15 | nca_patch: Significantly reduce the stack usage size within SearchBucketEntry() | Lioncash | |
Previously this function was using ~16KB of stack (16528 bytes), which was caused by the function arguments being taken by value rather than by reference. We can make this significantly lighter on the stack by taking them by reference. | |||
2020-09-15 | nca_patch: Make SearchBucketEntry() internally linked | Lioncash | |
This is only used internally and doesn't depend on any class state, so we can make it fully internal. | |||
2020-09-15 | cheat_engine: Convert ExtractName into a non-template function | Lioncash | |
We don't need to create two separate instantiations of the same code, we can simply make the character template argument a regular function parameter. | |||
2020-09-15 | cheat_engine: Remove unnecessary system argument to CheatParser's Parse function | Lioncash | |
This isn't used within the function at all in any implementations, so we can remove it entirely. | |||
2020-09-15 | Merge pull request #4655 from lioncash/internal2 | Rodrigo Locatti | |
patch_manager: Minor cleanup | |||
2020-09-14 | patch_manager: Resolve implicit truncations in FormatTitleVersion() | Lioncash | |
We make it explicit that we're truncating arithmetic here to resolve compiler warnings (even if the sizes weren't u32/u64 arithmetic generally promotes to int :<) | |||
2020-09-14 | patch_manager: Make use of type aliases | Lioncash | |
We can use these to avoid typing the same type redundantly. This way, if these ever change, only a single location needs to be modified. | |||
2020-09-14 | patch_manager: Make a few functions internally linked | Lioncash | |
These functions are only used within this translation unit, so we can make them internally linked. | |||
2020-09-14 | Merge pull request #4652 from lioncash/crypto | Rodrigo Locatti | |
crypto/key_manager: Remove dependency on the global system accessor | |||
2020-09-14 | crypto/key_manager: Remove dependency on the global system accessor | Lioncash | |
We can supply the content provider as an argument instead of hardcoding a global accessor in the implementation. | |||
2020-09-14 | Merge pull request #4651 from lioncash/kernel-global | Rodrigo Locatti | |
kernel: Remove all dependencies on the global system instance | |||
2020-09-14 | kernel: Remove all dependencies on the global system instance | Lioncash | |
With this, the kernel finally doesn't depend directly on the global system instance anymore. | |||
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 #4323 from ReinUsesLisp/no-spin | bunnei | |
kernel/scheduler: Use std::mutex instead of spin lock | |||
2020-09-11 | Merge pull request #4645 from v1993/lgtm-less-packages | bunnei | |
Remove bad and useless packages from LGTM build | |||
2020-09-11 | Merge pull request #4638 from Morph1984/qt-5.12.8 | bunnei | |
cmake: Update to Qt 5.12.8 | |||
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-11 | Remove bad and useless packages from LGTM build | Valeri | |
It still fails due to CMake version being 3.13.4, but at least we are not ones to blame now. | |||
2020-09-10 | Merge pull request #4597 from Morph1984/mjolnir-p2 | bunnei | |
Project Mjölnir: Part 2 - Controller Applet | |||
2020-09-10 | Merge pull request #4608 from lioncash/sign3 | bunnei | |
configure_input_player: Resolve sign conversion warnings in UpdateMappingWithDefaults() | |||
2020-09-10 | Merge pull request #4633 from ReinUsesLisp/gpu-init | Rodrigo Locatti | |
video_core: Remove all Core::System references in renderer | |||
2020-09-09 | Merge pull request #4635 from lioncash/gc-adap | bunnei | |
gc_adapter: Make DeviceConnected() a const member function | |||
2020-09-09 | cmake: Update to Qt 5.12.8 | Morph | |
2020-09-07 | service: Remove two usages of the global system accessor | Lioncash | |
Removes more instances of reliance on global state. | |||
2020-09-07 | gc_adapter: Make DeviceConnected() a const member function | Lioncash | |
This doesn't modify instance state, so it can be made const. | |||
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-06 | Merge pull request #4606 from lioncash/constexpr | bunnei | |
game_list_p: Mark some constants as constexpr | |||
2020-09-06 | video_core: Remove all Core::System references in renderer | ReinUsesLisp | |
Now that the GPU is initialized when video backends are initialized, it's no longer needed to query components once the game is running: it can be done when yuzu is booting. This allows us to pass components between constructors and in the process remove all Core::System references in the video backend. | |||
2020-09-05 | Merge pull request #4397 from ReinUsesLisp/bsd | bunnei | |
services: Implement most of bsd:s and GetCurrentIpAddress from nifm | |||
2020-09-04 | Merge pull request #4629 from Morph1984/mergesinglejoyasdualjoy-impl | LC | |
hid: Implement MergeSingleJoyasDualJoy | |||
2020-09-04 | hid: Implement MergeSingleJoyasDualJoy | Morph | |
- Used in multiple games such as Super Mario Odyssey. | |||
2020-09-04 | Resolve spacing inconsistencies in style.qrc/qss files | Morph | |
2020-09-04 | applets/controller: Resolve several compiler warnings | Morph | |
Resolves -Wsign-compare and -Wunused-variable | |||
2020-09-04 | Address feedback | Morph | |
2020-09-04 | clang-format | Morph | |