diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-10-12 17:38:12 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-10-12 17:38:12 -0300 |
| commit | b9124b049a47323cafa8807db4d501fb32a53297 (patch) | |
| tree | 0eb2778a68c5511a06632146c457ec7fee07f161 /src/common.hh | |
| parent | 60531bf63e9d93535e6d7ea5201a708392e738f6 (diff) | |
| download | game-b9124b049a47323cafa8807db4d501fb32a53297.tar.gz game-b9124b049a47323cafa8807db4d501fb32a53297.zip | |
fix problem with outfit comparisons - fixes #39
Diffstat (limited to 'src/common.hh')
| -rw-r--r-- | src/common.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
