mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-18 11:49:37 -06:00
DSP: Fix integer promotion spill
This commit is contained in:
@ -76,7 +76,7 @@ void Step()
|
||||
u16 opc = dsp_fetch_code();
|
||||
ExecuteInstruction(UDSPInstruction(opc));
|
||||
|
||||
if (DSPAnalyzer::code_flags[g_dsp.pc - 1] & DSPAnalyzer::CODE_LOOP_END)
|
||||
if (DSPAnalyzer::code_flags[static_cast<u16>(g_dsp.pc - 1u)] & DSPAnalyzer::CODE_LOOP_END)
|
||||
HandleLoop();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user