Fix some data types in hsfman.c

This commit is contained in:
gamemasterplc 2023-12-06 18:57:23 -06:00
parent c122c41d2e
commit 548a123ce5
4 changed files with 25 additions and 34 deletions

View file

@ -69,10 +69,10 @@ typedef struct hsf_header {
} HsfHeader;
typedef struct hsf_scene {
GXColor unk0;
f32 unk4;
f32 unk8;
u32 unkC;
GXFogType fogType;
f32 start;
f32 end;
GXColor color;
} HsfScene;
typedef struct hsf_bitmap {

View file

@ -53,7 +53,7 @@ typedef struct ThreeDCameraStruct {
typedef struct ThreeDProjectionStruct {
s8 unk_00;
char unk_01[0x3];
u32 unk_04;
AnimData *unk_04;
char unk_08[0xC];
Point3d unk_14;
Point3d unk_20;
@ -67,10 +67,5 @@ typedef struct ThreeDShadowStruct {
void*unk_04;
char unk_08[0x90];
} ThreeDShadowStruct;
typedef struct fog_data {
GXFogType fogType;
f32 start;
f32 end;
GXColor color;
} FogStruct;
#endif