Преглед на файлове

Merge pull request #2500 from FernandoS27/revert-2466

Revert #2466
Hexagon12 преди 7 години
родител
ревизия
73ee85e9ae
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      src/video_core/macro_interpreter.cpp

+ 3 - 1
src/video_core/macro_interpreter.cpp

@@ -120,7 +120,9 @@ bool MacroInterpreter::Step(u32 offset, bool is_delay_slot) {
 
     // An instruction with the Exit flag will not actually
     // cause an exit if it's executed inside a delay slot.
-    if (opcode.is_exit && !is_delay_slot) {
+    // TODO(Blinkhawk): Reversed to always exit. The behavior explained above requires further
+    // testing on the MME code.
+    if (opcode.is_exit) {
         // Exit has a delay slot, execute the next instruction
         Step(offset, true);
         return false;