summaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
authorAetias <144526980+AetiasHax@users.noreply.github.com>2026-05-04 22:07:42 +0200
committerGitHub <noreply@github.com>2026-05-04 22:07:42 +0200
commitb44496319d3027a625fcf876cf22e467720355df (patch)
tree4eff75d3a7855824487f1e87c99394640fb3387d /include/types.h
parentfe6681a298f089c5bbbee077ad9c06dc801df476 (diff)
ActorShopItem 98% (#151)
* ActorShopItem 93% * Fix build * Add missing symbols to usa * Document BMG message ID functions * Create bmg.py for inspecting BMG files * ActorShopItem 98% * Match func_ov031_0217dfec * Port reloc changes to usa * Make `ModelRender::GetLcdcAddress` non-const
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h
index b5ca70bb..bcdc63b0 100644
--- a/include/types.h
+++ b/include/types.h
@@ -36,5 +36,6 @@ typedef s32 bool;
#define CEIL_DIV(a, b) (((a) + (b) - 1) / (b))
#define UNK_PTR unk32 *
+#define PAD(start, end) unk8 pad_##start[end - start]
#endif