d_a_tsubo

This commit is contained in:
Kelebek1
2025-08-16 08:58:49 +01:00
parent 02fa1ba2c1
commit 7dfbda3da0
7 changed files with 3553 additions and 309 deletions
+1
View File
@@ -4,6 +4,7 @@
#include "dolphin/types.h"
#define ARRAY_SIZE(o) (sizeof(o) / sizeof(o[0]))
#define ARRAY_SSIZE(o) ((s32)(sizeof(o) / sizeof(o[0])))
// Align X to the previous N bytes (N must be power of two)
#define ALIGN_PREV(X, N) ((X) & ~((N)-1))