From b8ee1792525c61c42b0f2815a94ff0d87faebd32 Mon Sep 17 00:00:00 2001 From: plank <75984453+ThePlank@users.noreply.github.com> Date: Sat, 28 Oct 2023 17:06:37 +0200 Subject: [PATCH] fix "critial" error misspelling (#1071) how did this even happen in the first place lmao --- src/hx/Debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hx/Debug.cpp b/src/hx/Debug.cpp index 21e2d5948..f1c3afe26 100644 --- a/src/hx/Debug.cpp +++ b/src/hx/Debug.cpp @@ -89,7 +89,7 @@ static void CriticalErrorHandler(String inErr, bool allowFixup) DBGLOG("Critical Error: %s\n", inErr.utf8_str()); #if defined(HX_WINDOWS) && !defined(HX_WINRT) - MessageBoxA(0, inErr.utf8_str(), "Critial Error - program must terminate", + MessageBoxA(0, inErr.utf8_str(), "Critical Error - program must terminate", MB_ICONEXCLAMATION|MB_OK); #endif