mirror of https://github.com/PCSX2/pcsx2.git
Host: Fix ReportFormattedErrorAsync()
This commit is contained in:
parent
3091d28615
commit
d18bf338b6
|
@ -23,7 +23,7 @@ void Host::ReportFormattedErrorAsync(const std::string_view& title, const char*
|
|||
std::va_list ap;
|
||||
va_start(ap, format);
|
||||
FastFormatAscii fmt;
|
||||
fmt.WriteV(fmt, ap);
|
||||
fmt.WriteV(format, ap);
|
||||
va_end(ap);
|
||||
ReportErrorAsync(title, fmt.c_str());
|
||||
}
|
Loading…
Reference in New Issue