diff options
| author | Tilka <tilkax@gmail.com> | 2024-08-16 18:31:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-16 18:31:07 +0100 |
| commit | d10c3aaf293d4a5bea332e426882dcb70b5b8b3e (patch) | |
| tree | 486c3c70304b20617470b0173cb9440f7cb2d55b /Source/Core/InputCommon/ControllerInterface/evdev | |
| parent | 7c21bcd991e38cceccfce7c47c21b1422261bdfe (diff) | |
| parent | de1c47a70192a594c2435daa14b58950a613e2ce (diff) | |
Merge pull request #13012 from mitaclaw/Use-contains-method-2
Use contains method 2
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp index e9f4f21980..e0ae924b83 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp @@ -102,7 +102,7 @@ protected: for (auto remove_prefix : {"BTN_", "KEY_"}) { - if (name.find(remove_prefix) == 0) + if (name.starts_with(remove_prefix)) return std::string(name.substr(std::strlen(remove_prefix))); } |
