diff options
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 7b594ed16..2cae5c8f0 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) { | |||
| 308 | Debug_Emulated, | 308 | Debug_Emulated, |
| 309 | "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", | 309 | "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", |
| 310 | reason, info1, info2); | 310 | reason, info1, info2); |
| 311 | ASSERT(false); | ||
| 311 | } else { | 312 | } else { |
| 312 | LOG_ERROR( | 313 | LOG_ERROR( |
| 313 | Debug_Emulated, | 314 | Debug_Emulated, |
| 314 | "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", | 315 | "Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", |
| 315 | reason, info1, info2); | 316 | reason, info1, info2); |
| 316 | ASSERT(false); | ||
| 317 | } | 317 | } |
| 318 | } | 318 | } |
| 319 | 319 | ||