From d37eaf6f30a65235a1f55bbba9cca707826cb2ca Mon Sep 17 00:00:00 2001 From: Reece Date: Sun, 3 Apr 2022 00:29:20 +0100 Subject: [PATCH] [*] Regression of empty SysPushErrors (fmt now freaks out at this. we can use this over a nullptr. SSO, string pooling, etc, it'll be fine.) --- Include/Aurora/Debug/SysErrors.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/Aurora/Debug/SysErrors.hpp b/Include/Aurora/Debug/SysErrors.hpp index d9f5996a..35c0cc38 100644 --- a/Include/Aurora/Debug/SysErrors.hpp +++ b/Include/Aurora/Debug/SysErrors.hpp @@ -107,7 +107,7 @@ namespace Aurora::Debug static auline void SysPushError(EFailureCategory category) { - _PushError(_DBG_RET_ADDR, category, nullptr); + _PushError(_DBG_RET_ADDR, category, ""); } }