diff options
| author | JosJuice <josjuice@gmail.com> | 2023-05-17 09:13:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-17 09:13:36 +0200 |
| commit | 11768e3dd3e998bb874c919b96ae775826d6bd86 (patch) | |
| tree | 97e72c6de727056e1cb2d5842890f0dd28af2f4e /Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp | |
| parent | fede2ab9a993a1bc0baa2a9f42f6446e10dfee2d (diff) | |
| parent | 1a2b48c2047c367a2bbf3ca0dc73207053fb523b (diff) | |
Merge pull request #11829 from lioncash/strutil
Common/StringUtil: Move some utilities into the Common namespace
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp b/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp index 1c3e997769..e28e044866 100644 --- a/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp +++ b/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp @@ -43,7 +43,7 @@ std::string GetExpressionForControl(const std::string& control_name, { // If our expression contains any non-alpha characters // we should quote it - if (!std::all_of(expr.begin(), expr.end(), IsAlpha)) + if (!std::all_of(expr.begin(), expr.end(), Common::IsAlpha)) expr = fmt::format("`{}`", expr); } |
