summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-05-16 14:11:02 -0400
committerLioncash <mai.iam2048@gmail.com>2023-05-16 14:11:02 -0400
commita9f1edeb614297ba1bf20529e1888929252a9f60 (patch)
tree1957b619a99174308745aea2d400aee7dba21693 /Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp
parente0ef474d95f08ad02fb3ef134ca4039d4182eed3 (diff)
StringUtil: Move IsAlpha() into Common namespace
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp2
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);
}