mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 09:19:59 +00:00
Hide XInput bypass on non-Windows OSes
Follow-up to #6950. This option is a no-op on other OSes and only serves to spread confusion there.
This commit is contained in:
parent
6d7801deb7
commit
b54bf126f7
1 changed files with 4 additions and 0 deletions
|
@ -88,6 +88,10 @@ ConfigureInputAdvanced::ConfigureInputAdvanced(QWidget* parent)
|
||||||
connect(ui->buttonMotionTouch, &QPushButton::clicked, this,
|
connect(ui->buttonMotionTouch, &QPushButton::clicked, this,
|
||||||
&ConfigureInputAdvanced::CallMotionTouchConfigDialog);
|
&ConfigureInputAdvanced::CallMotionTouchConfigDialog);
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
|
ui->enable_raw_input->setVisible(false);
|
||||||
|
#endif
|
||||||
|
|
||||||
LoadConfiguration();
|
LoadConfiguration();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue