diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-22 09:44:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-22 09:44:59 +0100 |
| commit | 60fe9321ac8b3b7a7f9ba9ddd515bdf515ea8457 (patch) | |
| tree | 94b3c7be9e61ebbc3d5c92772094ffe9b0ae7c0f /platform/x11/joypad_linux.cpp | |
| parent | 8b231b96e347b677ea4189784c960bc4517b8e6a (diff) | |
| parent | 7de7f0ef178d2800f1ca70c15e8aff8aeb16bb8d (diff) | |
Merge pull request #26099 from marxin/fix-Wtype-limits-warnings
Fix all -Wtype-limits warnings.
Diffstat (limited to 'platform/x11/joypad_linux.cpp')
| -rw-r--r-- | platform/x11/joypad_linux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/joypad_linux.cpp b/platform/x11/joypad_linux.cpp index 907c652ab4..7cf0a1ef1e 100644 --- a/platform/x11/joypad_linux.cpp +++ b/platform/x11/joypad_linux.cpp @@ -476,7 +476,7 @@ void JoypadLinux::process_joypads() { // ev may be tainted and out of MAX_KEY range, which will cause // joy->key_map[ev.code] to crash - if (ev.code < 0 || ev.code >= MAX_KEY) + if (ev.code >= MAX_KEY) return; switch (ev.type) { |