diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-10-09 11:14:48 +1100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-10-09 11:14:48 +1100 |
commit | af3ba94b2a84e3b08fc9623ef70ad05b1668305b (patch) | |
tree | ec1bde02128047c28075135c8623524a4bfeedc8 /src/core/hle/kernel/svc.cpp | |
parent | c50f66a8eb85abd979508bec8b53cd12394bfd4d (diff) |
Actual kill execution when the bit isn't set, not the other way around
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 7b594ed16a..2cae5c8f0c 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -308,12 +308,12 @@ static void Break(u64 reason, u64 info1, u64 info2) { Debug_Emulated, "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", reason, info1, info2); + ASSERT(false); } else { LOG_ERROR( Debug_Emulated, "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", reason, info1, info2); - ASSERT(false); } } |