emulated_console: Amend cast in SetTouch()

id is an int value, not a u32.
This commit is contained in:
Lioncash 2022-12-05 18:14:31 -05:00
parent 4255e30722
commit 7bf4b45349

View file

@ -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;