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

emulated_console: Amend cast in SetTouch()

id is an int value, not a u32.
Lioncash 3 лет назад
Родитель
Сommit
7bf4b45349
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hid/emulated_console.cpp

+ 1 - 1
src/core/hid/emulated_console.cpp

@@ -199,7 +199,7 @@ void EmulatedConsole::SetTouch(const Common::Input::CallbackStatus& callback, st
 
     if (is_new_input) {
         touch_value.pressed.value = true;
-        touch_value.id = static_cast<u32>(index);
+        touch_value.id = static_cast<int>(index);
     }
 
     touch_value.x = touch_input.x;