diff --git a/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp b/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp index 9f2b6bcf02..46ee68502f 100644 --- a/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp +++ b/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp @@ -146,7 +146,7 @@ void loop(const UDSPInstruction& opc) } // g_dsp.pc = loop_pc; - g_dsp.pc =+ opSize[dsp_peek_code()]; + g_dsp.pc += opSize[dsp_peek_code()]; } void loopi(const UDSPInstruction& opc) @@ -161,7 +161,7 @@ void loopi(const UDSPInstruction& opc) } // g_dsp.pc = loop_pc; - g_dsp.pc =+ opSize[dsp_peek_code()]; + g_dsp.pc += opSize[dsp_peek_code()]; } void bloop(const UDSPInstruction& opc) @@ -179,7 +179,7 @@ void bloop(const UDSPInstruction& opc) else { g_dsp.pc = loop_pc; - g_dsp.pc =+ opSize[dsp_peek_code()]; + g_dsp.pc += opSize[dsp_peek_code()]; } } @@ -197,7 +197,7 @@ void bloopi(const UDSPInstruction& opc) else { g_dsp.pc = loop_pc; - g_dsp.pc =+ opSize[dsp_peek_code()]; + g_dsp.pc += opSize[dsp_peek_code()]; } }