From b9124b049a47323cafa8807db4d501fb32a53297 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Sun, 12 Oct 2025 17:38:12 -0300 Subject: fix problem with outfit comparisons - fixes #39 --- src/common.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.hh') diff --git a/src/common.hh b/src/common.hh index a8f1460..a22a511 100644 --- a/src/common.hh +++ b/src/common.hh @@ -22,7 +22,7 @@ typedef uint64_t uint64; typedef uintptr_t uintptr; typedef size_t usize; -#define STATIC_ASSERT(expr) static_assert((expr), "static assertion failed: " #expr) +#define STATIC_ASSERT(expr) static_assert((expr), #expr) #define NARRAY(arr) (int)(sizeof(arr) / sizeof(arr[0])) #define ISPOW2(x) ((x) != 0 && ((x) & ((x) - 1)) == 0) #define KB(x) ((usize)(x) << 10) -- cgit v1.2.3