CDVD: Don't report host error on iso detect fail

We don't want it popping up while scanning the game list.
This commit is contained in:
Stenzek 2023-01-27 03:48:18 +10:00 committed by refractionpcsx2
parent 62fffaf56f
commit c9498c3cec
1 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@
#include "Host.h"
#include "common/Assertions.h"
#include "common/Exceptions.h"
#include "fmt/format.h"
@ -254,7 +253,7 @@ bool InputIsoFile::Open(std::string srcfile, bool testOnly)
if (!detected)
{
Host::ReportErrorAsync("Unrecognized ISO image file format", "ISO mounting failed: PCSX2 is unable to identify the ISO image type.");
Console.Error(fmt::format("Unable to identify the ISO image type for '{}'", srcfile));
Close();
return false;
}