mirror of https://github.com/PCSX2/pcsx2.git
pcsx2:debug: miss a break that lead to a mem leak
This commit is contained in:
parent
5c933a7faf
commit
5e8f899620
|
@ -643,6 +643,7 @@ void DisassemblyFunction::load()
|
||||||
macro = new DisassemblyMacro(cpu,opAddress);
|
macro = new DisassemblyMacro(cpu,opAddress);
|
||||||
macro->setMacroMemory("sh",immediate,rt,2);
|
macro->setMacroMemory("sh",immediate,rt,2);
|
||||||
funcPos += 4;
|
funcPos += 4;
|
||||||
|
break;
|
||||||
case 0x2B: // sw
|
case 0x2B: // sw
|
||||||
macro = new DisassemblyMacro(cpu,opAddress);
|
macro = new DisassemblyMacro(cpu,opAddress);
|
||||||
macro->setMacroMemory("sw",immediate,rt,4);
|
macro->setMacroMemory("sw",immediate,rt,4);
|
||||||
|
|
Loading…
Reference in New Issue