From f9c2d7767df9c0bf91aa3c72fa29e3ca1edcb376 Mon Sep 17 00:00:00 2001 From: seta-san Date: Thu, 20 Apr 2023 14:48:18 -0500 Subject: [PATCH] CDVD: Fix Error Message in InputIsoFile.cpp --- pcsx2/CDVD/InputIsoFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/CDVD/InputIsoFile.cpp b/pcsx2/CDVD/InputIsoFile.cpp index 3a51ea433f..ec232375a2 100644 --- a/pcsx2/CDVD/InputIsoFile.cpp +++ b/pcsx2/CDVD/InputIsoFile.cpp @@ -253,7 +253,7 @@ bool InputIsoFile::Open(std::string srcfile, bool testOnly) if (!detected) { - Console.Error(fmt::format("Unable to identify the ISO image type for '{}'", srcfile)); + Console.Error(fmt::format("Unable to identify the ISO image type for '{}'", m_filename)); Close(); return false; }