From 05ce318a855345ba89146ef00dd556137ffe43f1 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 9 Apr 2024 23:46:54 -0500 Subject: [PATCH] [ox/std] Sort of fix custom assert --- deps/nostalgia/deps/ox/src/ox/std/realstd.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/nostalgia/deps/ox/src/ox/std/realstd.hpp b/deps/nostalgia/deps/ox/src/ox/std/realstd.hpp index d4441a5..73b7ae3 100644 --- a/deps/nostalgia/deps/ox/src/ox/std/realstd.hpp +++ b/deps/nostalgia/deps/ox/src/ox/std/realstd.hpp @@ -11,5 +11,5 @@ #if __has_include() #include #else -#define assert(e) while (1); +#define assert(e) while (!(e)); #endif \ No newline at end of file