From 139d4fc76e4ddf45179ca5ec5e42c52ef513ea4d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 2 Dec 2020 13:17:27 -0500 Subject: General: Convert PanicAlerts over to fmt equivalent Converts lingering panic alert calls over to the fmt-capable ones. --- Source/Core/VideoBackends/Software/SWOGLWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoBackends/Software/SWOGLWindow.cpp') diff --git a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp index 1a9fe69cf6..b5b787d383 100644 --- a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp +++ b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp @@ -20,7 +20,7 @@ std::unique_ptr SWOGLWindow::Create(const WindowSystemInfo& wsi) std::unique_ptr window = std::unique_ptr(new SWOGLWindow()); if (!window->Initialize(wsi)) { - PanicAlert("Failed to create OpenGL window"); + PanicAlertFmt("Failed to create OpenGL window"); return nullptr; } -- cgit v1.2.3