| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-04 | Add cemu hook changes related to PR #4609 | german | |
| 2020-09-04 | Remove RealMotionDevice | german | |
| 2020-09-04 | configure_input_player: Show/hide motion buttons based on the controller | Morph | |
| 2020-09-04 | controllers/npad: Simplify motion entry assignment | Morph | |
| Simplifies the motion assignment in the Dual Joycon entry and assigns index 1 of the motion entry (Motion 2) for the right joycon. | |||
| 2020-09-04 | Include HID and configuration changes related to motion | german | |
| 2020-09-04 | hid: Implement MergeSingleJoyasDualJoy | Morph | |
| - Used in multiple games such as Super Mario Odyssey. | |||
| 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 | |
| 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: Modify heuristic to account for certain games | Morph | |
| Now left and right joycons have the same priority (meaning both needs to be supported by the game). Explanation of the new heuristic: Assign left joycons to even player indices and right joycons to odd player indices. We do this since Captain Toad Treasure Tracker expects a left joycon for Player 1 and a right Joycon for Player 2 in 2 Player Assist mode. | |||
| 2020-09-04 | main: Apply settings after applet configuration is complete. | Morph | |
| 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: Load configuration prior to setting up connections | Morph | |
| This avoids unintentionally changing the states of elements while loading them in. | |||
| 2020-09-04 | applets/controller: Make 8 a static constexpr value of NUM_PLAYERS | Morph | |
| Avoids repetitive usages of the int literal '8' or calls to player_widgets.size() | |||
| 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-03 | Merge pull request #4611 from lioncash/xbyak2 | bunnei | |
| externals: Update Xbyak to 5.96 | |||
| 2020-09-03 | Merge pull request #4583 from lioncash/trunc | bunnei | |
| gc_poller: Resolve compilation warnings on MSVC | |||
| 2020-09-03 | Merge pull request #4578 from lioncash/xor | bunnei | |
| common_funcs: Add missing XOR operators to DECLARE_ENUM_FLAG_OPERATORS | |||
| 2020-09-03 | Merge pull request #4590 from ReinUsesLisp/tsan-sched | bunnei | |
| hle/scheduler: Fix data race in is_context_switch_pending | |||
| 2020-09-03 | Merge pull request #4575 from lioncash/async | bunnei | |
| async_shaders: Mark getters as const member functions | |||
| 2020-09-03 | file_sys/patch_manager: Add missing include | ReinUsesLisp | |
| Fixes build issues | |||
| 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-09-02 | main: Use three dots to complete the ellipsis | lat9nq | |
| Fixes a typo in the UI file. An ellipsis has 3 dots. | |||
| 2020-09-02 | input_common/motion_input: Make use of Common::PI constant | Morph | |
| Also amend the copyright notice to yuzu's instead of Dolphin's, which was mistakenly copy-pasted from another file. | |||
| 2020-09-02 | Merge pull request #4570 from german77/motionInput | bunnei | |
| input_common: Add a basic class for motion devices | |||
| 2020-09-01 | Merge pull request #4382 from FearlessTobi/port-udp-config | bunnei | |
| yuzu: Add motion and touch configuration from Citra | |||
| 2020-08-31 | Merge pull request #4588 from ReinUsesLisp/tsan-event | bunnei | |
| common/thread: Fix data race in is_set | |||
| 2020-08-31 | Merge pull request #4589 from ReinUsesLisp/tsan-host | bunnei | |
| hle/kernel: Fix data race in GetCurrentHostThreadID | |||
| 2020-08-31 | Merge pull request #4461 from comex/thread-names | LC | |
| Fix thread naming on Linux, which limits names to 15 bytes. | |||
| 2020-08-30 | vk_device: Fix driver id check on AMD for VK_EXT_extended_dynamic_state | ReinUsesLisp | |
| 'driver_id' can only be known on Vulkan 1.1 after creating a logical device. Move the driver id check to disable VK_EXT_extended_dynamic_state after the logical device is successfully initialized. The Vulkan device will have the extension enabled but it will not be used. | |||
| 2020-08-30 | externals: Update Xbyak to 5.96 | Lioncash | |
| I made a request on the Xbyak issue tracker to allow some constructors to be constexpr in order to avoid static constructors from needing to execute for some of our register constants. This request was implemented, so this updates Xbyak so that we can make use of it. | |||
| 2020-08-29 | Merge pull request #4601 from lioncash/const3 | bunnei | |
| sdl_impl: Minor cleanup | |||
| 2020-08-29 | Merge pull request #4605 from lioncash/copy3 | bunnei | |
| bootmanager: Prevent unnecessary copies in TouchUpdateEvent() | |||
| 2020-08-30 | sdl_joystick: disable the use of the hidapi drivers due to many problems ↵ | Vitor Kiguchi | |
| caused by them. The main problem is the loss of compatibility with some controllers, but there are also unwanted changes to the behaviour of PS4 controllers (hardcoded lightbar color). | |||
| 2020-08-30 | Address second batch of reviews | FearlessTobi | |
| 2020-08-29 | configure_input_player: Resolve sign conversion warnings in ↵ | Lioncash | |
| UpdateMappingWithDefaults() Prevents sign mismatch warnings in the loop conditionals. | |||
| 2020-08-29 | Reolve reorder warning | FearlessTobi | |
| 2020-08-29 | Address review comments and fix code compilation | FearlessTobi | |
| 2020-08-29 | bootmanager: Prevent unnecessary copies in TouchUpdateEvent() | Lioncash | |
| The list of points is returned by const reference, so we don't need to make a copy of every element in the list. | |||
| 2020-08-29 | game_list_p: Avoid string churn in GameListItemPath data() | Lioncash | |
| 2020-08-29 | game_list_p: Mark some constants as constexpr | Lioncash | |
| Consistency change with how we mark constants in the rest of the codebase. | |||
| 2020-08-29 | yuzu: Add motion and touch configuration | FearlessTobi | |
| 2020-08-29 | Merge pull request #4604 from lioncash/lifetime | LC | |
| yuzu/main: Amend lifetime issues with InputSubsystem | |||
| 2020-08-29 | yuzu/main: Amend lifetime issues with InputSubsystem | Lioncash | |
| Due to the way Qt performs destruction of parent/child widgets, we need to make the lifetime of the input subsystem shared across the main window and the render window. | |||
| 2020-08-29 | yuzu/configuration: Fix index out of bounds for default_analogs | Morph | |
| 2020-08-28 | sdl_impl: Reduce allocations in GetButtonMappingForDevice() | Lioncash | |
| These maps can be constexpr arrays of std::pair. | |||
| 2020-08-28 | sdl_impl: Make use of std::move on std::string where applicable | Lioncash | |
| Avoids redundant copies. | |||
