1
0
Fork 0
mirror of https://github.com/PabloMK7/citra.git synced 2025-03-02 20:56:33 +00:00

Merge pull request from lioncash/err

err_f: Add missing break in ThrowFatalError()
This commit is contained in:
Weiyi Wang 2018-03-29 09:38:19 +03:00 committed by GitHub
commit 115fd1cbf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,6 +200,7 @@ void ERR_F::ThrowFatalError(Kernel::HLERequestContext& ctx) {
case ExceptionType::PrefetchAbort:
LOG_CRITICAL(Service_ERR, "IFSR: 0x%08X", errtype.exception_data.exception_info.sr);
LOG_CRITICAL(Service_ERR, "r15: 0x%08X", errtype.exception_data.exception_info.ar);
break;
case ExceptionType::DataAbort:
LOG_CRITICAL(Service_ERR, "DFSR: 0x%08X", errtype.exception_data.exception_info.sr);
LOG_CRITICAL(Service_ERR, "DFAR: 0x%08X", errtype.exception_data.exception_info.ar);