1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-05-13 07:10:07 +00:00

Actual kill execution when the bit isn't set, not the other way around

This commit is contained in:
David Marcec 2018-10-09 11:14:48 +11:00
parent c50f66a8eb
commit af3ba94b2a

@ -308,12 +308,12 @@ static void Break(u64 reason, u64 info1, u64 info2) {
Debug_Emulated, Debug_Emulated,
"Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}",
reason, info1, info2); reason, info1, info2);
ASSERT(false);
} else { } else {
LOG_ERROR( LOG_ERROR(
Debug_Emulated, Debug_Emulated,
"Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}",
reason, info1, info2); reason, info1, info2);
ASSERT(false);
} }
} }