summaryrefslogtreecommitdiff
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-27 07:54:05 -0400
committerGravatar Lioncash2018-04-27 10:04:02 -0400
commit847549663090aeef89debc6213ef17b7f14e0b0e (patch)
tree899731d5c75a7b40a8aa72f5e115f86e10078745 /src/core/core_timing.cpp
parentMerge pull request #380 from ogniK5377/service-impl (diff)
downloadyuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.gz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.xz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.zip
general: Convert assertion macros over to be fmt-compatible
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r--src/core/core_timing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 9e1bf2d0e..91c93e01f 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -74,7 +74,7 @@ EventType* RegisterEvent(const std::string& name, TimedCallback callback) {
74 // check for existing type with same name. 74 // check for existing type with same name.
75 // we want event type names to remain unique so that we can use them for serialization. 75 // we want event type names to remain unique so that we can use them for serialization.
76 ASSERT_MSG(event_types.find(name) == event_types.end(), 76 ASSERT_MSG(event_types.find(name) == event_types.end(),
77 "CoreTiming Event \"%s\" is already registered. Events should only be registered " 77 "CoreTiming Event \"{}\" is already registered. Events should only be registered "
78 "during Init to avoid breaking save states.", 78 "during Init to avoid breaking save states.",
79 name.c_str()); 79 name.c_str());
80 80