Some LLE comments
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2495 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3234bca193
commit
d8ee333bd7
|
@ -1238,6 +1238,10 @@ void dsp_opc_srbith(uint16 opc)
|
||||||
g_dsp.r[R_SR] &= ~(1 << 14);
|
g_dsp.r[R_SR] &= ~(1 << 14);
|
||||||
break;
|
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
|
/* case 0xf: // SET16 // that doesnt happen on a real console
|
||||||
g_dsp.r[R_SR] |= (1 << 14);
|
g_dsp.r[R_SR] |= (1 << 14);
|
||||||
break;*/
|
break;*/
|
||||||
|
|
|
@ -162,9 +162,8 @@ void* dsp_thread(void* lpParameter)
|
||||||
{
|
{
|
||||||
if (!gdsp_run())
|
if (!gdsp_run())
|
||||||
{
|
{
|
||||||
ErrorLog("*** DSP: CRITICAL ERROR ***\n");
|
PanicAlert("ERROR: DSP Halt");
|
||||||
//return 0;
|
return 0;
|
||||||
exit(0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue