diff --git a/rpcs3/Emu/Cell/PPUInterpreter.h b/rpcs3/Emu/Cell/PPUInterpreter.h index 5e721ccf5f..104418d7bd 100644 --- a/rpcs3/Emu/Cell/PPUInterpreter.h +++ b/rpcs3/Emu/Cell/PPUInterpreter.h @@ -147,7 +147,7 @@ private: case 0x008: return CPU.LR; case 0x009: return CPU.CTR; case 0x100: return CPU.USPRG0; - case 0x10C: return CPU.TBL; + case 0x10C: return get_time(); } UNK(fmt::Format("ReadSPR error: Unknown SPR 0x%x!", n)); @@ -164,7 +164,7 @@ private: case 0x008: CPU.LR = value; return; case 0x009: CPU.CTR = value; return; case 0x100: CPU.USPRG0 = value; return; - case 0x10C: CPU.TBL = value; return; + case 0x10C: UNK("WriteSPR: Write to time-based SPR. Report this to a developer!"); return; } UNK(fmt::Format("WriteSPR error: Unknown SPR 0x%x!", n));