From 642a1c1348bd85802f9f945598fb83fd43cbbd9a Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 19 May 2022 11:40:46 -0700 Subject: [PATCH] MainWindow: Replace WARN_LOG with WARN_LOG_FMT --- Source/Core/DolphinQt/MainWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 5099ffa0e2..4cd1ca0d1a 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -325,9 +325,9 @@ void MainWindow::InitControllers() if (!g_controller_interface.HasDefaultDevice()) { // Note that the CI default device could be still temporarily removed at any time - WARN_LOG(CONTROLLERINTERFACE, - "No default device has been added in time. EmulatedController(s) defaulting adds" - " input mappings made for a specific default device depending on the platform"); + WARN_LOG_FMT(CONTROLLERINTERFACE, + "No default device has been added in time. EmulatedController(s) defaulting adds" + " input mappings made for a specific default device depending on the platform"); } GCAdapter::Init(); Pad::Initialize();