diff options
| author | bunnei <bunneidev@gmail.com> | 2022-05-27 12:16:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-27 12:16:03 -0700 |
| commit | 439e6216740f0ad01e88978147f02f70d182f498 (patch) | |
| tree | 3873d1660b42dcb17fdacd01990500055495d3ae /src/yuzu_cmd/emu_window | |
| parent | b01541f4e4b36b5477280473454fb648443c68b2 (diff) | |
| parent | c82806f9cb88f390ae3fb048ba7ff2bb138fa3ec (diff) | |
Merge pull request #8372 from german77/touch
input_common: touch: Rewrite touch driver to support multiple touch points
Diffstat (limited to 'src/yuzu_cmd/emu_window')
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index ae2e62dc5..71c413e64 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -93,7 +93,7 @@ void EmuWindow_SDL2::OnFingerMotion(float x, float y, std::size_t id) { } void EmuWindow_SDL2::OnFingerUp() { - input_subsystem->GetTouchScreen()->TouchReleased(0); + input_subsystem->GetTouchScreen()->ReleaseAllTouch(); } void EmuWindow_SDL2::OnKeyEvent(int key, u8 state) { |
