summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-10-10 03:27:44 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-10-10 03:27:44 +0200
commit09b6dda8f03c06a09b6ad2f731826e93e5920503 (patch)
tree9fbac6e5d8bb0df314fcecba38aea48f57b05069 /src/core/hle/kernel/svc.cpp
parentFixed incorrect types for svcBreak (diff)
downloadyuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar.gz
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar.bz2
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar.lz
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar.xz
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.tar.zst
yuzu-09b6dda8f03c06a09b6ad2f731826e93e5920503.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-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) {
struct BreakReason {
union {
u32 raw;
- BitField<31, 1, u32> dont_kill_application;
+ BitField<31, 1, u32> signal_debugger;
};
};
/// Break program execution
static void Break(u32 reason, u64 info1, u64 info2) {
BreakReason break_reason{reason};
- if (break_reason.dont_kill_application) {
+ if (break_reason.signal_debugger) {
LOG_ERROR(
Debug_Emulated,
"Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}",