From d18bf338b61ce9e75eb3228c07f7c279d8317a11 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Mon, 17 Jan 2022 12:21:47 +1000 Subject: [PATCH] Host: Fix ReportFormattedErrorAsync() --- pcsx2/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Host.cpp b/pcsx2/Host.cpp index 6a3057ca30..db79e46b8f 100644 --- a/pcsx2/Host.cpp +++ b/pcsx2/Host.cpp @@ -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()); } \ No newline at end of file