MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / ReportFormattedInfoAsync

Method ReportFormattedInfoAsync

pcsx2/Host.cpp:140–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140void Host::ReportFormattedInfoAsync(const std::string_view title, const char* format, ...)
141{
142 std::va_list ap;
143 va_start(ap, format);
144 std::string message(StringUtil::StdStringFromFormatV(format, ap));
145 va_end(ap);
146 ReportInfoAsync(title, message);
147}
148
149void Host::ReportFormattedErrorAsync(const std::string_view title, const char* format, ...)
150{

Callers

nothing calls this directly

Calls 1

StdStringFromFormatVFunction · 0.85

Tested by

no test coverage detected