summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window
diff options
context:
space:
mode:
authorgerman <german@thesoftwareartisans.com>2021-02-03 19:34:25 +0100
committergerman <german@thesoftwareartisans.com>2021-02-08 03:31:58 +0100
commit52b79ac00965aaf10db1a181067c2f2d33125171 (patch)
tree52ebd5133ac802db77e03d988dced834c833936e /src/yuzu_cmd/emu_window
parentMerge pull request #5885 from MerryMage/ring_buffer-granularity (diff)
downloadyuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar.gz
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar.bz2
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar.lz
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar.xz
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.tar.zst
yuzu-52b79ac00965aaf10db1a181067c2f2d33125171.zip
Diffstat (limited to 'src/yuzu_cmd/emu_window')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp3
1 files changed, 2 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 7843d5167..39841aa28 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -30,7 +30,8 @@ EmuWindow_SDL2::~EmuWindow_SDL2() {
void EmuWindow_SDL2::OnMouseMotion(s32 x, s32 y) {
TouchMoved((unsigned)std::max(x, 0), (unsigned)std::max(y, 0), 0);
- input_subsystem->GetMouse()->MouseMove(x, y);
+
+ input_subsystem->GetMouse()->MouseMove(x, y, 0, 0);
}
void EmuWindow_SDL2::OnMouseButton(u32 button, u8 state, s32 x, s32 y) {