summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoBackendBase.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-13 22:33:26 -0500
committerLioncash <mathew1800@gmail.com>2020-11-17 21:23:58 -0500
commit3d9b2aa0055ded7ee74f6e4a73ff54acecf313a9 (patch)
tree0ff92a960d77b6bc8b92bed1c7d61f79206887dc /Source/Core/VideoCommon/VideoBackendBase.cpp
parent8a621c2d5e7722de5148a0a40d4072445cffb361 (diff)
VideoCommon: Migrate over to fmt
Migrates off the printf-based formatting where applicable.
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoBackendBase.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp
index d90064bae3..20f4d116a6 100644
--- a/Source/Core/VideoCommon/VideoBackendBase.cpp
+++ b/Source/Core/VideoCommon/VideoBackendBase.cpp
@@ -10,7 +10,7 @@
#include <string>
#include <vector>
-#include "fmt/format.h"
+#include <fmt/format.h>
#include "Common/ChunkFile.h"
#include "Common/CommonTypes.h"
@@ -163,8 +163,9 @@ u16 VideoBackendBase::Video_GetBoundingBox(int index)
static bool warn_once = true;
if (warn_once)
{
- ERROR_LOG(VIDEO, "BBox shall be used but it is disabled. Please use a gameini to enable it "
- "for this game.");
+ ERROR_LOG_FMT(VIDEO,
+ "BBox shall be used but it is disabled. Please use a gameini to enable it "
+ "for this game.");
}
warn_once = false;
return 0;
@@ -175,9 +176,10 @@ u16 VideoBackendBase::Video_GetBoundingBox(int index)
static bool warn_once = true;
if (warn_once)
{
- PanicAlertT("This game requires bounding box emulation to run properly but your graphics "
- "card or its drivers do not support it. As a result you will experience bugs or "
- "freezes while running this game.");
+ PanicAlertFmtT(
+ "This game requires bounding box emulation to run properly but your graphics "
+ "card or its drivers do not support it. As a result you will experience bugs or "
+ "freezes while running this game.");
}
warn_once = false;
return 0;