configure_motion_touch: do not move engine parameter (#6208)
fixes an error stemmed from miscommunication
This commit is contained in:
parent
d1171328c9
commit
0fc177e268
|
@ -354,10 +354,8 @@ void ConfigureMotionTouch::ApplyConfiguration() {
|
||||||
std::string motion_engine = ui->motion_provider->currentData().toString().toStdString();
|
std::string motion_engine = ui->motion_provider->currentData().toString().toStdString();
|
||||||
std::string touch_engine = ui->touch_provider->currentData().toString().toStdString();
|
std::string touch_engine = ui->touch_provider->currentData().toString().toStdString();
|
||||||
|
|
||||||
Common::ParamPackage motion_param{}, touch_param{};
|
Common::ParamPackage motion_param{};
|
||||||
motion_param.Set("engine", std::move(motion_engine));
|
motion_param.Set("engine", motion_engine);
|
||||||
touch_param.Set("engine", std::move(touch_engine));
|
|
||||||
|
|
||||||
if (motion_engine == "motion_emu") {
|
if (motion_engine == "motion_emu") {
|
||||||
motion_param.Set("sensitivity", static_cast<float>(ui->motion_sensitivity->value()));
|
motion_param.Set("sensitivity", static_cast<float>(ui->motion_sensitivity->value()));
|
||||||
} else if (motion_engine == "sdl") {
|
} else if (motion_engine == "sdl") {
|
||||||
|
@ -365,6 +363,8 @@ void ConfigureMotionTouch::ApplyConfiguration() {
|
||||||
motion_param.Set("port", port);
|
motion_param.Set("port", port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Common::ParamPackage touch_param{};
|
||||||
|
touch_param.Set("engine", touch_engine);
|
||||||
if (touch_engine == "cemuhookudp") {
|
if (touch_engine == "cemuhookudp") {
|
||||||
touch_param.Set("min_x", min_x);
|
touch_param.Set("min_x", min_x);
|
||||||
touch_param.Set("min_y", min_y);
|
touch_param.Set("min_y", min_y);
|
||||||
|
|
Loading…
Reference in New Issue