diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 53c6718ffb..e86f76874d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -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; }