diff options
| author | 2022-10-01 14:37:55 -0500 | |
|---|---|---|
| committer | 2022-10-01 14:37:55 -0500 | |
| commit | 181a54a37b0473259c3682cb24eaaad4313489a9 (patch) | |
| tree | d81eaa1157878a142714f475c3a59bea57deed25 /src | |
| parent | Merge pull request #8874 from vonchenplus/align_index_buffer_size (diff) | |
| parent | Fix "controller.colors_state.right" being "left" (diff) | |
| download | yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.gz yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.xz yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.zip | |
Merge pull request #9008 from ZwipZwapZapony/controller.colors_state.right
Fix "controller.colors_state.right" being "left"
Diffstat (limited to '')
| -rw-r--r-- | src/core/hid/emulated_controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp index 01c43be93..2cff279b1 100644 --- a/src/core/hid/emulated_controller.cpp +++ b/src/core/hid/emulated_controller.cpp | |||
| @@ -93,7 +93,7 @@ void EmulatedController::ReloadFromSettings() { | |||
| 93 | .body = GetNpadColor(player.body_color_left), | 93 | .body = GetNpadColor(player.body_color_left), |
| 94 | .button = GetNpadColor(player.button_color_left), | 94 | .button = GetNpadColor(player.button_color_left), |
| 95 | }; | 95 | }; |
| 96 | controller.colors_state.left = { | 96 | controller.colors_state.right = { |
| 97 | .body = GetNpadColor(player.body_color_right), | 97 | .body = GetNpadColor(player.body_color_right), |
| 98 | .button = GetNpadColor(player.button_color_right), | 98 | .button = GetNpadColor(player.button_color_right), |
| 99 | }; | 99 | }; |