diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2026-07-19 20:30:21 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2026-07-28 12:39:54 +0200 |
| commit | 08e183d322981c705ba9fc7f4f1476cc7e7e5f23 (patch) | |
| tree | 1f64ee7d6bfb5038e37fc2256f0a067f3a648700 /Source/Core/InputCommon/ControllerInterface/SDL | |
| parent | d742aa8b4c4d052f7dceaa39022b1fe3996f1781 (diff) | |
Replace string concatination with `fmt::format`
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/SDL')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/SDL/SDLGamepad.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDLGamepad.h b/Source/Core/InputCommon/ControllerInterface/SDL/SDLGamepad.h index 0a431866e7..a997437f61 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDLGamepad.h +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDLGamepad.h @@ -7,6 +7,7 @@ #include <SDL3/SDL_gamepad.h> #include <SDL3/SDL_haptic.h> +#include <fmt/format.h> #include "Common/MathUtil.h" @@ -16,17 +17,17 @@ namespace { std::string GetLegacyButtonName(int index) { - return "Button " + std::to_string(index); + return fmt::format("Button {}", index); } std::string GetLegacyAxisName(int index, int range) { - return "Axis " + std::to_string(index) + (range < 0 ? '-' : '+'); + return fmt::format("Axis {}{}", index, range < 0 ? '-' : '+'); } std::string GetLegacyHatName(int index, int direction) { - return "Hat " + std::to_string(index) + ' ' + "NESW"[direction]; + return fmt::format("Hat {} {}", index, "NESW"[direction]); } constexpr int GetDirectionFromHatMask(int mask) |
