Skip to content

Commit

Permalink
Merge pull request dolphin-emu#2851 from JosJuice/unknown-instruction
Browse files Browse the repository at this point in the history
Restore old assert message for unknown instruction
  • Loading branch information
degasus committed Aug 15, 2015
2 parents 3469694 + c490747 commit b5a5883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void Interpreter::unknown_instruction(UGeckoInstruction _inst)
i + 1, rGPR[i + 1],
i + 2, rGPR[i + 2],
i + 3, rGPR[i + 3]);
assert(0);
_assert_msg_(POWERPC, 0, "\nIntCPU: Unknown instruction %08x at PC = %08x last_PC = %08x LR = %08x\n", _inst.hex, PC, last_pc, LR);
}

void Interpreter::ClearCache()
Expand Down

0 comments on commit b5a5883

Please sign in to comment.