summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-22 17:49:29 -0400
committerLioncash <mathew1800@gmail.com>2020-10-23 13:16:18 -0400
commita5e1415e74ce5b6b2a339256aa3e97748a3a2484 (patch)
treecb8455dae3bfbc283fe05e3b6f026cd79c9c7f16 /Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
parent64f7a4448b3071a0419dc09125e2cdf73cb99b97 (diff)
InputCommon: Migrate logging over to fmt
Continues the migration of the logging calls over to the fmt capable ones.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
index 2fc0e1b972..d508de613a 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
@@ -42,7 +42,7 @@ std::string GetDeviceName(const LPDIRECTINPUTDEVICE8 device)
}
else
{
- ERROR_LOG(PAD, "GetProperty(DIPROP_PRODUCTNAME) failed.");
+ ERROR_LOG_FMT(PAD, "GetProperty(DIPROP_PRODUCTNAME) failed.");
}
return result;
@@ -58,7 +58,7 @@ void PopulateDevices(HWND hwnd)
if (FAILED(DirectInput8Create(GetModuleHandle(nullptr), DIRECTINPUT_VERSION, IID_IDirectInput8,
(LPVOID*)&idi8, nullptr)))
{
- ERROR_LOG(PAD, "DirectInput8Create failed.");
+ ERROR_LOG_FMT(PAD, "DirectInput8Create failed.");
return;
}