diff options
author | german <german@thesoftwareartisans.com> | 2021-02-09 15:12:21 +0100 |
---|---|---|
committer | german <german@thesoftwareartisans.com> | 2021-02-09 15:12:21 +0100 |
commit | bcd4e4f650a0d32b94ccf7b724de67d6ddefbee2 (patch) | |
tree | 8dfff5becb88dcb00eb9f4fdeaecb5ed64b3e2ac /src | |
parent | hid: Implement GC controller (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_input_player_widget.cpp | 3 |
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); |