summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-05-27 21:16:03 +0200
committerGitHub <noreply@github.com>2022-05-27 21:16:03 +0200
commit439e6216740f0ad01e88978147f02f70d182f498 (patch)
tree3873d1660b42dcb17fdacd01990500055495d3ae /src/yuzu_cmd
parentMerge pull request #8381 from lat9nq/path-util-pointer-bool (diff)
parentinput_common: touch: Rewrite touch driver to support multiple touch points (diff)
downloadyuzu-439e6216740f0ad01e88978147f02f70d182f498.tar
yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.gz
yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.bz2
yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.lz
yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.xz
yuzu-439e6216740f0ad01e88978147f02f70d182f498.tar.zst
yuzu-439e6216740f0ad01e88978147f02f70d182f498.zip
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp2
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) {