mirror of https://github.com/PCSX2/pcsx2.git
- Warn about disk emulation software on CDVD file access failure. Seems to be a too common problem people run into.
- Minor log change for SPU2-X. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3681 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
17df6e218c
commit
18663acf57
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue