Просмотр исходного кода

Merge pull request #5344 from lioncash/move

configure_motion_touch: Prevent use after move in ApplyConfiguration()
Morph 5 лет назад
Родитель
Сommit
980973d83e
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      src/yuzu/configuration/configure_motion_touch.cpp

+ 1 - 2
src/yuzu/configuration/configure_motion_touch.cpp

@@ -328,14 +328,13 @@ void ConfigureMotionTouch::ApplyConfiguration() {
     std::string touch_engine = ui->touch_provider->currentData().toString().toStdString();
 
     Common::ParamPackage touch_param{};
-    touch_param.Set("engine", std::move(touch_engine));
-
     if (touch_engine == "cemuhookudp") {
         touch_param.Set("min_x", min_x);
         touch_param.Set("min_y", min_y);
         touch_param.Set("max_x", max_x);
         touch_param.Set("max_y", max_y);
     }
+    touch_param.Set("engine", std::move(touch_engine));
 
     Settings::values.touch_device = touch_param.Serialize();
     Settings::values.use_touch_from_button = ui->touch_from_button_checkbox->isChecked();