summaryrefslogtreecommitdiff
path: root/include/PR
diff options
context:
space:
mode:
Diffstat (limited to 'include/PR')
-rw-r--r--include/PR/gbi.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/PR/gbi.h b/include/PR/gbi.h
index 5f5890400..2c04e570f 100644
--- a/include/PR/gbi.h
+++ b/include/PR/gbi.h
@@ -1261,6 +1261,16 @@ typedef struct {
char pad3;
} Light_t;
+// Added in MM
+typedef struct {
+ unsigned char col[3];
+ unsigned char unk3;
+ unsigned char colc[3];
+ unsigned char unk7;
+ short pos[3];
+ unsigned char unkE;
+} PointLight_t;
+
typedef struct {
unsigned char col[3]; /* ambient light value (rgba) */
char pad1;
@@ -1273,7 +1283,8 @@ typedef struct {
} Hilite_t;
typedef union {
- Light_t l;
+ Light_t l;
+ PointLight_t p;
long long int force_structure_alignment[2];
} Light;