diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp index 901d9feb00..7848a7fdb3 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. }