diff options
| author | 2022-05-22 20:34:32 -0500 | |
|---|---|---|
| committer | 2022-05-23 11:01:14 -0500 | |
| commit | c82806f9cb88f390ae3fb048ba7ff2bb138fa3ec (patch) | |
| tree | 60f52dfd3e59f1424d03ab71a8cb28b9b845d486 /src/yuzu_cmd | |
| parent | Merge pull request #8342 from lat9nq/clang-latest-stdc++ (diff) | |
| download | yuzu-c82806f9cb88f390ae3fb048ba7ff2bb138fa3ec.tar.gz yuzu-c82806f9cb88f390ae3fb048ba7ff2bb138fa3ec.tar.xz yuzu-c82806f9cb88f390ae3fb048ba7ff2bb138fa3ec.zip | |
input_common: touch: Rewrite touch driver to support multiple touch points
Diffstat (limited to 'src/yuzu_cmd')
| -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) { | |||
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | void EmuWindow_SDL2::OnFingerUp() { | 95 | void EmuWindow_SDL2::OnFingerUp() { |
| 96 | input_subsystem->GetTouchScreen()->TouchReleased(0); | 96 | input_subsystem->GetTouchScreen()->ReleaseAllTouch(); |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | void EmuWindow_SDL2::OnKeyEvent(int key, u8 state) { | 99 | void EmuWindow_SDL2::OnKeyEvent(int key, u8 state) { |