From 7c9f836a282e4c061ea803a25ee0b0538b58edd1 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 31 Mar 2011 06:20:15 +0000 Subject: [PATCH] Fix issue 4267. (but not really) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7426 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/DSP/DSPCore.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/DSP/DSPCore.cpp b/Source/Core/Core/Src/DSP/DSPCore.cpp index a0e2925082..674913d5c3 100644 --- a/Source/Core/Core/Src/DSP/DSPCore.cpp +++ b/Source/Core/Core/Src/DSP/DSPCore.cpp @@ -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; }