diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2019-01-17 10:13:32 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2019-03-17 08:53:53 -0500 |
| commit | 0bdfa19650ef3b52ccfa5dee3eed5d42efb206b9 (patch) | |
| tree | 548e9237383547d43a909551984edfd710010a54 /Source/Core/InputCommon/ControllerInterface/evdev/evdev.h | |
| parent | 4fb68c530bc07518948f82ea3475c1ff6d1ca9a0 (diff) | |
ControllerInterface: SDL: Replace unclear bool parameter with enum class.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev/evdev.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/evdev/evdev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h index 5196084d24..4b6d0bc0b2 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h @@ -90,8 +90,8 @@ private: public: enum class Motor : u8 { - WEAK, - STRONG, + Weak, + Strong, }; RumbleEffect(int fd, Motor motor); |
