summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/configuration/configure_input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_input.cpp b/src/yuzu/configuration/configure_input.cpp
index d29abb74b..473937ea9 100644
--- a/src/yuzu/configuration/configure_input.cpp
+++ b/src/yuzu/configuration/configure_input.cpp
@@ -152,9 +152,9 @@ ConfigureInput::ConfigureInput(QWidget* parent)
152 } 152 }
153 } 153 }
154 connect(analog_map_stick[analog_id], &QPushButton::released, [=]() { 154 connect(analog_map_stick[analog_id], &QPushButton::released, [=]() {
155 QMessageBox::information( 155 QMessageBox::information(this, tr("Information"),
156 this, "Information", 156 tr("After pressing OK, first move your joystick horizontally, "
157 "After pressing OK, first move your joystick horizontally, and then vertically."); 157 "and then vertically."));
158 handleClick( 158 handleClick(
159 analog_map_stick[analog_id], 159 analog_map_stick[analog_id],
160 [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; }, 160 [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; },