diff options
| author | 2022-05-27 12:16:03 -0700 | |
|---|---|---|
| committer | 2022-05-27 12:16:03 -0700 | |
| commit | 439e6216740f0ad01e88978147f02f70d182f498 (patch) | |
| tree | 3873d1660b42dcb17fdacd01990500055495d3ae /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | |
| parent | Merge pull request #8381 from lat9nq/path-util-pointer-bool (diff) | |
| parent | input_common: touch: Rewrite touch driver to support multiple touch points (diff) | |
| download | yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.gz yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.xz yuzu-439e6216740f0ad01e88978147f02f70d182f498.zip | |
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/emu_window_sdl2.cpp')
| -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) { |