summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/svc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index f05b743ef..e5dd43275 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -304,14 +304,14 @@ static ResultCode ArbitrateUnlock(VAddr mutex_addr) {
304struct BreakReason { 304struct BreakReason {
305 union { 305 union {
306 u32 raw; 306 u32 raw;
307 BitField<31, 1, u32> dont_kill_application; 307 BitField<31, 1, u32> signal_debugger;
308 }; 308 };
309}; 309};
310 310
311/// Break program execution 311/// Break program execution
312static void Break(u32 reason, u64 info1, u64 info2) { 312static void Break(u32 reason, u64 info1, u64 info2) {
313 BreakReason break_reason{reason}; 313 BreakReason break_reason{reason};
314 if (break_reason.dont_kill_application) { 314 if (break_reason.signal_debugger) {
315 LOG_ERROR( 315 LOG_ERROR(
316 Debug_Emulated, 316 Debug_Emulated,
317 "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", 317 "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}",