From c6cef45f0eee44a4f656d564830737f620047c22 Mon Sep 17 00:00:00 2001 From: Mrlinkwii Date: Tue, 1 Aug 2023 16:38:26 +0100 Subject: [PATCH] Inputmanager: fix possible build issue --- pcsx2/Input/InputManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }