From d8ee333bd7e4abddfcb1c1a1edeb7b6557c5aee8 Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sun, 1 Mar 2009 01:11:57 +0000 Subject: [PATCH] Some LLE comments git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2495 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE/Src/gdsp_opcodes.cpp | 4 ++++ Source/Plugins/Plugin_DSP_LLE/Src/main.cpp | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/gdsp_opcodes.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/gdsp_opcodes.cpp index 04e78d6a0f..179e9849c8 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/gdsp_opcodes.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/gdsp_opcodes.cpp @@ -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;*/ diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp index f8356d3620..a6190c921d 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp @@ -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; } } }