From 0a9045f1c736e348248a39c63d40898eb3f078dd Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 25 Dec 2022 22:44:07 +0100 Subject: [PATCH] Fix typo in crash handler --- r5dev/public/utility/crashhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/public/utility/crashhandler.cpp b/r5dev/public/utility/crashhandler.cpp index 33d7c7e7..bb1a5451 100644 --- a/r5dev/public/utility/crashhandler.cpp +++ b/r5dev/public/utility/crashhandler.cpp @@ -35,7 +35,7 @@ static const std::map g_ExceptionToString = { EXCEPTION_ILLEGAL_INSTRUCTION, "Illegal instruction" }, { EXCEPTION_INVALID_DISPOSITION, "Invalid disposition" }, { EXCEPTION_NONCONTINUABLE_EXCEPTION, "Non-continuable exception" }, - { EXCEPTION_PRIV_INSTRUCTION, "Priviledged instruction" }, + { EXCEPTION_PRIV_INSTRUCTION, "Privileged instruction" }, { EXCEPTION_STACK_OVERFLOW, "Stack overflow" }, { EXCEPTION_DATATYPE_MISALIGNMENT, "Datatype misalignment" }, { EXCEPTION_FLT_DENORMAL_OPERAND, "Denormal operand [FLT]" }, @@ -46,7 +46,7 @@ static const std::map g_ExceptionToString = { EXCEPTION_FLT_STACK_CHECK, "Stack check [FLT]" }, { EXCEPTION_FLT_UNDERFLOW, "Numeric underflow [FLT]" }, { EXCEPTION_INT_DIVIDE_BY_ZERO, "Divide by zero [INT]" }, - { EXCEPTION_INT_OVERFLOW, "Numeric overfloat [INT]" } + { EXCEPTION_INT_OVERFLOW, "Numeric overflow [INT]" } }; // Borrowed from the R2 project