summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman <german@thesoftwareartisans.com>2021-02-09 15:12:21 +0100
committergerman <german@thesoftwareartisans.com>2021-02-09 15:12:21 +0100
commitbcd4e4f650a0d32b94ccf7b724de67d6ddefbee2 (patch)
tree8dfff5becb88dcb00eb9f4fdeaecb5ed64b3e2ac
parenthid: Implement GC controller (diff)
downloadyuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar.gz
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar.bz2
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar.lz
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar.xz
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.tar.zst
yuzu-bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2.zip
-rw-r--r--src/yuzu/configuration/configure_input_player_widget.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_input_player_widget.cpp b/src/yuzu/configuration/configure_input_player_widget.cpp
index e3e8bde48..b8bcb44a4 100644
--- a/src/yuzu/configuration/configure_input_player_widget.cpp
+++ b/src/yuzu/configuration/configure_input_player_widget.cpp
@@ -226,6 +226,9 @@ void PlayerControlPreview::paintEvent(QPaintEvent* event) {
case Settings::ControllerType::RightJoycon:
DrawRightController(p, center);
break;
+ case Settings::ControllerType::GameCube:
+ DrawGCController(p, center);
+ break;
case Settings::ControllerType::ProController:
default:
DrawProController(p, center);