diff --git a/Source/Core/Common/MsgHandler.h b/Source/Core/Common/MsgHandler.h index 84afaafbe9..0e2de793a1 100644 --- a/Source/Core/Common/MsgHandler.h +++ b/Source/Core/Common/MsgHandler.h @@ -73,7 +73,7 @@ void SetAbortOnPanicAlert(bool should_abort); template std::string FmtFormatT(const char* string, Args&&... args) { - return fmt::format(Common::GetStringT(string), std::forward(args)...); + return fmt::format(fmt::runtime(Common::GetStringT(string)), std::forward(args)...); } } // namespace Common