summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCatobat <69204835+Catobat@users.noreply.github.com>2023-04-30 21:58:05 +0200
committerCatobat <69204835+Catobat@users.noreply.github.com>2023-04-30 21:58:05 +0200
commit3a7f92e7c75c4cdc6ef1ee788d743a87deaebcc6 (patch)
treed6f673040a915cc38eb8c0562bf09d53947b0fcb /include
parent5145a6909e6d764687376a07cd20671f618e570b (diff)
Change customHitbox in InteractableObject to s8*
Diffstat (limited to 'include')
-rw-r--r--include/structures.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/structures.h b/include/structures.h
index 2560d32a..acebef3e 100644
--- a/include/structures.h
+++ b/include/structures.h
@@ -263,7 +263,7 @@ typedef struct {
/*0x01*/ u8 type;
/*0x02*/ u8 interactDirections; /* lower 4 bits determine Link's allowed facing directions to interact, 0 to allow (0000WSEN) */
/*0x03*/ u8 kinstoneId;
- /*0x04*/ const u8* customHitbox; /* if set, array contains x, y, width and height */
+ /*0x04*/ const s8* customHitbox; /* if set, array contains x, y, width and height */
/*0x08*/ Entity* entity;
} InteractableObject;