mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Fix "controller.colors_state.right" being "left"
This commit is contained in:
parent
2213927253
commit
31e3437a2f
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ void EmulatedController::ReloadFromSettings() {
|
||||||
.body = GetNpadColor(player.body_color_left),
|
.body = GetNpadColor(player.body_color_left),
|
||||||
.button = GetNpadColor(player.button_color_left),
|
.button = GetNpadColor(player.button_color_left),
|
||||||
};
|
};
|
||||||
controller.colors_state.left = {
|
controller.colors_state.right = {
|
||||||
.body = GetNpadColor(player.body_color_right),
|
.body = GetNpadColor(player.body_color_right),
|
||||||
.button = GetNpadColor(player.button_color_right),
|
.button = GetNpadColor(player.button_color_right),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue