summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Zwip-Zwap Zapony2022-10-01 18:18:08 +0200
committerGravatar GitHub2022-10-01 18:18:08 +0200
commit31e3437a2fd4dc4efdae4401bbc57a1a6929dd16 (patch)
treec68cccff85da678ca0b91ab0b15b551a73c8c4cf /src
parentMerge pull request #9004 from zhaobot/tx-update-20221001041028 (diff)
downloadyuzu-31e3437a2fd4dc4efdae4401bbc57a1a6929dd16.tar.gz
yuzu-31e3437a2fd4dc4efdae4401bbc57a1a6929dd16.tar.xz
yuzu-31e3437a2fd4dc4efdae4401bbc57a1a6929dd16.zip
Fix "controller.colors_state.right" being "left"
Diffstat (limited to '')
-rw-r--r--src/core/hid/emulated_controller.cpp2
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 };