mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
62fffaf56f
commit
c9498c3cec
|
@ -21,7 +21,6 @@
|
||||||
#include "Host.h"
|
#include "Host.h"
|
||||||
|
|
||||||
#include "common/Assertions.h"
|
#include "common/Assertions.h"
|
||||||
#include "common/Exceptions.h"
|
|
||||||
|
|
||||||
#include "fmt/format.h"
|
#include "fmt/format.h"
|
||||||
|
|
||||||
|
@ -254,7 +253,7 @@ bool InputIsoFile::Open(std::string srcfile, bool testOnly)
|
||||||
|
|
||||||
if (!detected)
|
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();
|
Close();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue