diff options
| author | 2021-02-11 09:58:23 -0800 | |
|---|---|---|
| committer | 2021-02-11 09:58:23 -0800 | |
| commit | e53b6ecc76cf8fe670e5056f75d8e798da66f9ff (patch) | |
| tree | 21c0ed620d025fa8ab30465c83dfe57e4888816b /src/yuzu_cmd | |
| parent | Merge pull request #5908 from Morph1984/swkbd-finalize (diff) | |
| parent | Add mouse panning (diff) | |
| download | yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.gz yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.xz yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.zip | |
Merge pull request #5869 from german77/mousePanning
input_common: Add mouse panning
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 3 |
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() { | |||
| 30 | 30 | ||
| 31 | void EmuWindow_SDL2::OnMouseMotion(s32 x, s32 y) { | 31 | void EmuWindow_SDL2::OnMouseMotion(s32 x, s32 y) { |
| 32 | TouchMoved((unsigned)std::max(x, 0), (unsigned)std::max(y, 0), 0); | 32 | TouchMoved((unsigned)std::max(x, 0), (unsigned)std::max(y, 0), 0); |
| 33 | input_subsystem->GetMouse()->MouseMove(x, y); | 33 | |
| 34 | input_subsystem->GetMouse()->MouseMove(x, y, 0, 0); | ||
| 34 | } | 35 | } |
| 35 | 36 | ||
| 36 | void EmuWindow_SDL2::OnMouseButton(u32 button, u8 state, s32 x, s32 y) { | 37 | void EmuWindow_SDL2::OnMouseButton(u32 button, u8 state, s32 x, s32 y) { |