psx - dehihihihihihihihi

This commit is contained in:
zeromus 2014-12-18 11:30:06 +00:00
parent 877e2dde81
commit aaf3d0a559
1 changed files with 3 additions and 3 deletions

View File

@ -905,9 +905,9 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
ret["pc"] = (int)regs.PC;
ret["lo"] = (int)regs.LO;
ret["hi"] = (int)regs.HI;
ret["sr"] = (int)regs.HI;
ret["cause"] = (int)regs.HI;
ret["epc"] = (int)regs.HI;
ret["sr"] = (int)regs.SR;
ret["cause"] = (int)regs.CAUSE;
ret["epc"] = (int)regs.EPC;
return ret;
}