diff options
| author | 2021-11-14 21:56:54 -0600 | |
|---|---|---|
| committer | 2021-11-24 20:30:28 -0600 | |
| commit | 42949738f2c01a4125a9a385c9100240181153ec (patch) | |
| tree | 5de97be0bc08a1dd4ff5138196c08a6bf2e08e70 /src/input_common/drivers/sdl_driver.cpp | |
| parent | core/hid: Improve accuary of mouse implementation (diff) | |
| download | yuzu-42949738f2c01a4125a9a385c9100240181153ec.tar.gz yuzu-42949738f2c01a4125a9a385c9100240181153ec.tar.xz yuzu-42949738f2c01a4125a9a385c9100240181153ec.zip | |
kraken: Address comments from review
Fix compiler bug
Diffstat (limited to 'src/input_common/drivers/sdl_driver.cpp')
| -rw-r--r-- | src/input_common/drivers/sdl_driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp index 1e3741e0f..0b24f1858 100644 --- a/src/input_common/drivers/sdl_driver.cpp +++ b/src/input_common/drivers/sdl_driver.cpp | |||
| @@ -929,7 +929,7 @@ std::string SDLDriver::GetHatButtonName(u8 direction_value) const { | |||
| 929 | } | 929 | } |
| 930 | } | 930 | } |
| 931 | 931 | ||
| 932 | u8 SDLDriver::GetHatButtonId(const std::string direction_name) const { | 932 | u8 SDLDriver::GetHatButtonId(const std::string& direction_name) const { |
| 933 | Uint8 direction; | 933 | Uint8 direction; |
| 934 | if (direction_name == "up") { | 934 | if (direction_name == "up") { |
| 935 | direction = SDL_HAT_UP; | 935 | direction = SDL_HAT_UP; |