diff --git a/pcsx2/CDVD/IsoFileFormats.cpp b/pcsx2/CDVD/IsoFileFormats.cpp index 092668660c..81daf56ad0 100644 --- a/pcsx2/CDVD/IsoFileFormats.cpp +++ b/pcsx2/CDVD/IsoFileFormats.cpp @@ -137,7 +137,8 @@ isoFile *isoOpen(const char *filename) iso->handle = _openfile( iso->filename, O_RDONLY); if (iso->handle == NULL) { - Console.Error("error loading %s", iso->filename); + Console.Error("ISO loader: Cannot access %s", iso->filename); + Console.Error(">> Make sure the iso file is not mounted in any disk emulation software! <<"); return NULL; } diff --git a/plugins/CDVDiso/src/CDVDisop.cpp b/plugins/CDVDiso/src/CDVDisop.cpp index 42379583a4..8b77d3c6f1 100644 --- a/plugins/CDVDiso/src/CDVDisop.cpp +++ b/plugins/CDVDiso/src/CDVDisop.cpp @@ -170,7 +170,7 @@ EXPORT_C_(s32) CDVDopen(const char* pTitle) iso = isoOpen(IsoFile); if (iso == NULL) { - SysMessage("Error loading %s\n", IsoFile); + SysMessage("Error loading %s\nMake sure the iso file is not mounted in any disk emulation software!", IsoFile); return -1; } diff --git a/plugins/spu2-x/src/spu2sys.cpp b/plugins/spu2-x/src/spu2sys.cpp index 3053fcb229..4952845210 100644 --- a/plugins/spu2-x/src/spu2sys.cpp +++ b/plugins/spu2-x/src/spu2sys.cpp @@ -168,7 +168,7 @@ void V_Core::Init( int index ) void V_Core::Reset( int index ) { - ConLog( "* SPU2-X: Init SPU2 core %d \n", index ); + ConLog( "* SPU2-X: Reset SPU2 core %d \n", index ); memset( this, 0, sizeof(V_Core) ); const int c = Index = index;