From a5e1415e74ce5b6b2a339256aa3e97748a3a2484 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 22 Oct 2020 17:49:29 -0400 Subject: InputCommon: Migrate logging over to fmt Continues the migration of the logging calls over to the fmt capable ones. --- Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp') diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 2d2d256c2a..e232fd6ee7 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -81,7 +81,7 @@ void Init() { #if !SDL_VERSION_ATLEAST(2, 0, 0) if (SDL_Init(SDL_INIT_JOYSTICK) != 0) - ERROR_LOG(SERIALINTERFACE, "SDL failed to initialize"); + ERROR_LOG_FMT(SERIALINTERFACE, "SDL failed to initialize"); return; #else s_hotplug_thread = std::thread([] { @@ -95,14 +95,14 @@ void Init() if (SDL_Init(SDL_INIT_JOYSTICK | SDL_INIT_HAPTIC) != 0) { - ERROR_LOG(SERIALINTERFACE, "SDL failed to initialize"); + ERROR_LOG_FMT(SERIALINTERFACE, "SDL failed to initialize"); return; } const Uint32 custom_events_start = SDL_RegisterEvents(2); if (custom_events_start == static_cast(-1)) { - ERROR_LOG(SERIALINTERFACE, "SDL failed to register custom events"); + ERROR_LOG_FMT(SERIALINTERFACE, "SDL failed to register custom events"); return; } s_stop_event_type = custom_events_start; -- cgit v1.2.3