summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorKloen <kloen@outlawkiwi.com>2017-01-29 17:46:23 +0100
committerKloen <kloen@outlawkiwi.com>2017-01-29 22:01:19 +0100
commit2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4 (patch)
treeb25e04b6877fa3a3bd397faaf07d42b65573366c /src/core/hle/service
parentcore: fix savedata_archive.cpp warnings about unhandled enumeration values on OSX (diff)
downloadyuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar.gz
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar.bz2
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar.lz
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar.xz
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.tar.zst
yuzu-2ca3beb9d3ebd3237c996e1f15b7726b3231a0d4.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;