summaryrefslogtreecommitdiffstats
path: root/src/input_common/drivers/sdl_driver.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-12-13 15:26:44 +0100
committerLioncash <mathew1800@gmail.com>2021-12-13 15:57:39 +0100
commit755822ceecf2a261a09f486706955bebc23d3917 (patch)
tree2c108925761d939e52b3a5a2c56486b52246c8a9 /src/input_common/drivers/sdl_driver.cpp
parentinput_engine: std::move InputIdentifier in SetCallback() (diff)
downloadyuzu-755822ceecf2a261a09f486706955bebc23d3917.tar
yuzu-755822ceecf2a261a09f486706955bebc23d3917.tar.gz
yuzu-755822ceecf2a261a09f486706955bebc23d3917.tar.bz2
yuzu-755822ceecf2a261a09f486706955bebc23d3917.tar.lz
yuzu-755822ceecf2a261a09f486706955bebc23d3917.tar.xz
yuzu-755822ceecf2a261a09f486706955bebc23d3917.tar.zst
yuzu-755822ceecf2a261a09f486706955bebc23d3917.zip
Diffstat (limited to 'src/input_common/drivers/sdl_driver.cpp')
-rw-r--r--src/input_common/drivers/sdl_driver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp
index a9219dbf2..e33a5ff31 100644
--- a/src/input_common/drivers/sdl_driver.cpp
+++ b/src/input_common/drivers/sdl_driver.cpp
@@ -88,7 +88,7 @@ public:
return true;
}
- BasicMotion GetMotion() {
+ const BasicMotion& GetMotion() const {
return motion;
}
@@ -367,7 +367,7 @@ void SDLDriver::HandleGameControllerEvent(const SDL_Event& event) {
if (joystick->UpdateMotion(event.csensor)) {
const PadIdentifier identifier = joystick->GetPadIdentifier();
SetMotion(identifier, 0, joystick->GetMotion());
- };
+ }
}
break;
}