- 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:
ramapcsx2 2010-08-23 12:10:55 +00:00
parent 17df6e218c
commit 18663acf57
3 changed files with 4 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;