summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-30 00:38:49 +0100
committerGitHub <noreply@github.com>2017-01-30 00:38:49 +0100
commitf111cd66cec3e03ce9e7236a0325f1e0b2c59855 (patch)
tree8b31970e76f823de5249bb751789fbfcbac10686 /src/core/hle/service
parentMerge pull request #2493 from Kloen/killing-warnings-final-mix (diff)
parentcitra: add missing control paths for ResultStatus on rom load. Fix warning about unhandled enumeration values on OSX (diff)
downloadyuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar.gz
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar.bz2
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar.lz
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar.xz
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.tar.zst
yuzu-f111cd66cec3e03ce9e7236a0325f1e0b2c59855.zip
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/err_f.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/err_f.cpp b/src/core/hle/service/err_f.cpp
index cd0a1a598..9da55f328 100644
--- a/src/core/hle/service/err_f.cpp
+++ b/src/core/hle/service/err_f.cpp
@@ -227,6 +227,8 @@ static void ThrowFatalError(Interface* self) {
LOG_CRITICAL(Service_ERR, "FINST2: 0x%08X",
errtype.exception_data.exception_info.fpinst2);
break;
+ case ExceptionType::Undefined:
+ break; // Not logging exception_info for this case
}
LOG_CRITICAL(Service_ERR, "Datetime: %s", GetCurrentSystemTime().c_str());
break;