diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-27 07:54:05 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-27 10:04:02 -0400 |
commit | 847549663090aeef89debc6213ef17b7f14e0b0e (patch) | |
tree | 899731d5c75a7b40a8aa72f5e115f86e10078745 /src/core/core_timing.cpp | |
parent | 3c404964097a0882ce9651571ec02c54474350ce (diff) |
general: Convert assertion macros over to be fmt-compatible
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r-- | src/core/core_timing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp index 9e1bf2d0e5..91c93e01f7 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) { // check for existing type with same name. // we want event type names to remain unique so that we can use them for serialization. ASSERT_MSG(event_types.find(name) == event_types.end(), - "CoreTiming Event \"%s\" is already registered. Events should only be registered " + "CoreTiming Event \"{}\" is already registered. Events should only be registered " "during Init to avoid breaking save states.", name.c_str()); |