Some LLE comments

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2495 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2009-03-01 01:11:57 +00:00
parent 3234bca193
commit d8ee333bd7
2 changed files with 6 additions and 3 deletions

View File

@ -1238,6 +1238,10 @@ void dsp_opc_srbith(uint16 opc)
g_dsp.r[R_SR] &= ~(1 << 14);
break;
// FIXME: Both of these appear in the beginning of the Wind Waker
//case 0xb:
//case 0xc:
/* case 0xf: // SET16 // that doesnt happen on a real console
g_dsp.r[R_SR] |= (1 << 14);
break;*/

View File

@ -162,9 +162,8 @@ void* dsp_thread(void* lpParameter)
{
if (!gdsp_run())
{
ErrorLog("*** DSP: CRITICAL ERROR ***\n");
//return 0;
exit(0);
PanicAlert("ERROR: DSP Halt");
return 0;
}
}
}