diff --git a/pcsx2/Input/InputManager.cpp b/pcsx2/Input/InputManager.cpp index 74e9ba072c..b4b782508f 100644 --- a/pcsx2/Input/InputManager.cpp +++ b/pcsx2/Input/InputManager.cpp @@ -380,7 +380,7 @@ void InputManager::AddBinding(const std::string_view& binding, const InputEventH if (ibinding->num_keys == MAX_KEYS_PER_BINDING) { - Console.WriteLn(fmt::format("Too many chord parts, max is {} ({})", MAX_KEYS_PER_BINDING, binding)); + Console.WriteLn(fmt::format("Too many chord parts, max is {} ({})", static_cast(MAX_KEYS_PER_BINDING), binding)); ibinding.reset(); break; }