diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp index 33c8ff4ca6..fd8233473a 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp @@ -499,11 +499,17 @@ void Interpreter::dcbst(UGeckoInstruction inst) void Interpreter::dcbt(UGeckoInstruction inst) { + if (HID0.NOOPTI) + return; + // TODO: Implement some sort of L2 emulation. } void Interpreter::dcbtst(UGeckoInstruction inst) { + if (HID0.NOOPTI) + return; + // TODO: Implement some sort of L2 emulation. }