Browse Source

core: fix err_f.cpp warning about unhandled enumeration value on OSX

pull/15/merge
Kloen 9 years ago
parent
commit
2ca3beb9d3
  1. 2
      src/core/hle/service/err_f.cpp

2
src/core/hle/service/err_f.cpp

@ -227,6 +227,8 @@ static void ThrowFatalError(Interface* self) {
LOG_CRITICAL(Service_ERR, "FINST2: 0x%08X", LOG_CRITICAL(Service_ERR, "FINST2: 0x%08X",
errtype.exception_data.exception_info.fpinst2); errtype.exception_data.exception_info.fpinst2);
break; break;
case ExceptionType::Undefined:
break; // Not logging exception_info for this case
} }
LOG_CRITICAL(Service_ERR, "Datetime: %s", GetCurrentSystemTime().c_str()); LOG_CRITICAL(Service_ERR, "Datetime: %s", GetCurrentSystemTime().c_str());
break; break;

Loading…
Cancel
Save