Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-23 | Merge pull request #4618 from german77/GcAdapterAutoMap | bunnei | |
Add automap feature for GC adapter | |||
2020-09-23 | Merge pull request #4702 from lioncash/doc-warn | Rodrigo Locatti | |
memory: Resolve a -Wdocumentation warning | |||
2020-09-23 | Merge pull request #4701 from lioncash/unused-proto | Rodrigo Locatti | |
install_dialog: Remove unused function prototype | |||
2020-09-23 | Merge pull request #4700 from lioncash/copies | Rodrigo Locatti | |
game_list: Eliminate redundant argument copies | |||
2020-09-23 | memory: Resolve a -Wdocumentation warning | Lioncash | |
memory doesn't exist as a parameter any more. | |||
2020-09-23 | install_dialog: Make use of [[nodiscard]] where applicable | Lioncash | |
Allows the compiler to warn against cases where the return value isn't used (which would be a bug). | |||
2020-09-23 | install_dialog: Remove unused function prototype | Lioncash | |
This function doesn't have an implementation, so it can be removed to prevent others from unintentionally using it. | |||
2020-09-23 | game_list: Make game list function naming consistent | Lioncash | |
Makes the naming consistent with the rest of the functions that are present. | |||
2020-09-23 | game_list: Eliminate redundant argument copies | Lioncash | |
Several functions can be taken by const reference to avoid copies | |||
2020-09-22 | control_flow: emplace elements in place within TryQuery() | Lioncash | |
Places data structures where they'll eventually be moved to to avoid needing to even move them in the first place. | |||
2020-09-22 | control_flow: Make use of std::move in InsertBranch() | Lioncash | |
Avoids unnecessary atomic increments and decrements. | |||
2020-09-22 | General: Make use of std::nullopt where applicable | Lioncash | |
Allows some implementations to avoid completely zeroing out the internal buffer of the optional, and instead only set the validity byte within the structure. This also makes it consistent how we return empty optionals. | |||
2020-09-22 | ips_layer: Eliminate a redundant copy in Parse() | Lioncash | |
Prevents unnecessary copying of the line being parsed. | |||
2020-09-21 | Merge pull request #4675 from Morph1984/fix-boot-multicontent | bunnei | |
submission_package: Account for multi-content NSPs | |||
2020-09-21 | Merge pull request #4692 from ReinUsesLisp/remove-vsync | Rodrigo Locatti | |
renderer_opengl: Remove emulated mailbox presentation | |||
2020-09-20 | Merge pull request #4683 from Morph1984/NpadHandheldActivationMode-impl | bunnei | |
hid: Implement Get/SetNpadHandheldActivationMode | |||
2020-09-20 | renderer_opengl: Remove emulated mailbox presentation | ReinUsesLisp | |
Emulated mailbox presentation was causing performance issues on Nvidia's OpenGL driver. Remove it. | |||
2020-09-19 | Merge pull request #4643 from FearlessTobi/decrease-pad-update-interval | bunnei | |
Test: Decrease pad_update_ns | |||
2020-09-18 | Add automap feature for GC adapter | german | |
2020-09-18 | fermi_2d: Make use of designated initializers | Lioncash | |
Same behavior, less repetition. We can also ensure all members of Config are initialized. | |||
2020-09-18 | hid: Implement Get/SetNpadHandheldActivationMode | Morph | |
- Used in Clubhouse Games: 51 Worldwide Classics | |||
2020-09-18 | configure_input_player: Fixes motion mapping using ConfigureButtonClick | Morph | |
2020-09-17 | Merge pull request #4647 from Morph1984/readd-context-menu | bunnei | |
configure_input_player: Re-add "Clear" context menu option | |||
2020-09-17 | am: Stub GetPreviousProgramIndex | Morph | |
- Used in Super Mario 3D All-Stars | |||
2020-09-17 | configure_input_player: Re-add "Clear" context menu option | Morph | |
The context menu was removed in Mjölnir Part 1 as part of the input rewrite as we were unaware of it's usage statistics. However, as this was the only way to clear the inputs of individual buttons, this PR will re-add it back in. | |||
2020-09-17 | submission_package: Account for multi-content NSPs | Morph | |
Previously we assumed a submission package can only contain one Program NCA with a single TitleID. However, Super Mario 3D All-Stars contains four Program NCAs, each with their unique TitleIDs. This accounts for the existence of multi-content games such as this one. - Fixes booting Super Mario 3D All-Stars from the games list. | |||
2020-09-17 | Merge pull request #4670 from lioncash/initializer | Rodrigo Locatti | |
arm_dynarmic_cp15: Initialize member variables | |||
2020-09-17 | Merge pull request #4665 from lioncash/sm-kernel | Rodrigo Locatti | |
service/sm: Eliminate dependency on the global system instance | |||
2020-09-17 | Merge pull request #4666 from lioncash/unused-func | Rodrigo Locatti | |
service: Remove unused funcation | |||
2020-09-17 | Merge pull request #4671 from lioncash/nfp-copy | Rodrigo Locatti | |
command_generator/nfp: Eliminate unnecessary copies | |||
2020-09-17 | Merge pull request #4672 from lioncash/narrowing | Rodrigo Locatti | |
decoder/texture: Eliminate narrowing conversion in GetTldCode() | |||
2020-09-17 | Merge pull request #4673 from lioncash/fallthrough | Rodrigo Locatti | |
decode/image: Eliminate switch fallthrough in DecodeImage() | |||
2020-09-17 | Merge pull request #4594 from german77/MotionHID | bunnei | |
hid/configuration: Implement motion controls to HID | |||
2020-09-17 | decode/image: Eliminate switch fallthrough in DecodeImage() | Lioncash | |
Fortunately this didn't result in any issues, given the block that code was falling through to would immediately break. | |||
2020-09-17 | decoder/texture: Eliminate narrowing conversion in GetTldCode() | Lioncash | |
The assignment was previously truncating a u64 value to a bool. | |||
2020-09-17 | audio_core/command_generator: Use const references where applicable | Lioncash | |
In a lot of cases, we can make use of const references rather than non-const references. While we're in the area we can silence some truncation and sign conversion warnings. | |||
2020-09-17 | audio_core/command_generator: Avoid an unnecessary copy in ↵ | Lioncash | |
GenerateFinalMixCommand() | |||
2020-09-17 | nfp: Eliminate two unnecessary copies | Lioncash | |
GetAmiiboBuffer() returns by const reference, so we can use a reference instead of taking the returned buffer by value. | |||
2020-09-17 | arm_dynarmic_cp15: Initialize member variables | Lioncash | |
Ensures that the member variables are always initialized to a deterministic value on creation. | |||
2020-09-17 | control_metadata: Resolve typo in Portuguese language name | Lioncash | |
This isn't used anywhere, so this is a trivial fix. | |||
2020-09-17 | service: Remove unused funcation | Lioncash | |
This is now completely unused, so it can be removed. | |||
2020-09-17 | service/sm: Slightly more efficient string name validation | Lioncash | |
We can check the end of the string first for null-termination, rather than the beginning of the string. | |||
2020-09-17 | service/sm: Eliminate dependency on the global system instance | Lioncash | |
2020-09-16 | Merge pull request #4653 from ReinUsesLisp/gc-warns | bunnei | |
gc_adapter: Disable MSVC nonstandard extension warning on libusb.h | |||
2020-09-16 | Merge pull request #4663 from ReinUsesLisp/wswitch | bunnei | |
video_core: Enforce -Werror=switch | |||
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 | 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. |