Fix issue 4267. (but not really)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7426 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
44b4198d17
commit
7c9f836a28
|
@ -62,7 +62,15 @@ static bool LoadRom(const char *fname, int size_in_words, u16 *rom)
|
|||
return true;
|
||||
}
|
||||
|
||||
PanicAlertT("Failed to load DSP ROM:\n%s\nThis file is required to use DSP LLE", fname);
|
||||
PanicAlertT(
|
||||
"Failed to load DSP ROM:\t%s\n"
|
||||
"\n"
|
||||
"This file is required to use DSP LLE.\n"
|
||||
"It is not included with Dolphin as it contains copyrighted data.\n"
|
||||
"Use DSPSpy to dump the file from your physical console.\n"
|
||||
"\n"
|
||||
"You may use the DSP HLE engine which does not require ROM dumps.\n"
|
||||
"(Choose it from the \"Audio\" tab of the configuration dialog.)", fname);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue