From 9dd6eba3ae1355adb3646ddbf222696705295511 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 26 Jun 2018 01:01:02 -0600 Subject: [PATCH] Fatal: Update comments. --- nx/include/switch/services/fatal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nx/include/switch/services/fatal.h b/nx/include/switch/services/fatal.h index 45ddc553..38475494 100644 --- a/nx/include/switch/services/fatal.h +++ b/nx/include/switch/services/fatal.h @@ -7,6 +7,7 @@ #pragma once #include "../types.h" +/// Type of thrown fatal error. typedef enum { FatalType_ErrorReportAndErrorScreen = 0, FatalType_ErrorReport = 1, @@ -24,6 +25,6 @@ void NORETURN fatalSimple(Result err); * @brief Triggers a system fatal error with a custom FatalType. * @param err[in] Result code to throw. * @param err[in] Type of fatal error to throw. - * @note This function does not return. + * @note This function may not return, depending on \ref FatalType. */ void fatalWithType(Result err, FatalType type);