summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2023-11-10 21:10:00 -0500
committerGitHub <noreply@github.com>2023-11-10 21:10:00 -0500
commit547126d93ac049a08b80c930c05b4fd41ae06278 (patch)
tree904b1735eb132eb3470b42e229c6b8c986f4b9ed
parentc194e945152aba79a646af4def871c926acbe9ca (diff)
Update warnings_build_current.txt
-rw-r--r--tools/warnings_count/warnings_build_current.txt904
1 files changed, 904 insertions, 0 deletions
diff --git a/tools/warnings_count/warnings_build_current.txt b/tools/warnings_count/warnings_build_current.txt
index a5a5bcdb0..d255b279b 100644
--- a/tools/warnings_count/warnings_build_current.txt
+++ b/tools/warnings_count/warnings_build_current.txt
@@ -1,2 +1,906 @@
cc: Warning: -mips3 should not be used for ucode 32-bit compiles
cc: Warning: -mips3 should not be used for ucode 32-bit compiles
+src/audio/voice_internal.c: In function 'func_801A5228':
+src/audio/voice_internal.c:88:51: warning: passing argument 2 of 'osVoiceSetWord' from incompatible pointer type [-Wincompatible-pointer-types]
+ 88 | errorCode = osVoiceSetWord(&gVoiceHandle, &dict->words[i]);
+ | ^~~~~~~~~~~~~~~
+ | |
+ | u16 (*)[15] {aka short unsigned int (*)[15]}
+In file included from include/PR/controller_voice.h:5,
+ from include/ultra64.h:9,
+ from include/z64.h:11,
+ from include/global.h:4,
+ from src/audio/voice_internal.c:1:
+include/PR/os_voice.h:60:43: note: expected 'u8 *' {aka 'unsigned char *'} but argument is of type 'u16 (*)[15]' {aka 'short unsigned int (*)[15]'}
+ 60 | s32 osVoiceSetWord(OSVoiceHandle* hd, u8* word);
+ | ~~~~^~~~
+src/audio/voice_internal.c:92:27: warning: passing argument 1 of 'func_801A5A1C' from incompatible pointer type [-Wincompatible-pointer-types]
+ 92 | func_801A5A1C(&dict->words[i]);
+ | ^~~~~~~~~~~~~~~
+ | |
+ | u16 (*)[15] {aka short unsigned int (*)[15]}
+src/audio/voice_internal.c:5:23: note: expected 's8 *' {aka 'signed char *'} but argument is of type 'u16 (*)[15]' {aka 'short unsigned int (*)[15]'}
+ 5 | u8* func_801A5A1C(s8* words);
+ | ~~~~^~~~~
+src/audio/voice_internal.c: In function 'func_801A5A1C':
+src/audio/voice_internal.c:324:23: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
+ 324 | u8 numSyllables = strlen(words); // technically twice the num of syllables
+ | ^~~~~~
+src/audio/voice_internal.c:3:1: note: 'strlen' is defined in header '<string.h>'; did you forget to '#include <string.h>'?
+ 2 | #include "z64voice.h"
+ +++ |+#include <string.h>
+ 3 |
+src/audio/voice_internal.c:348:12: warning: pointer targets in returning 'char *' from a function with return type 'u8 *' {aka 'unsigned char *'} differ in signedness [-Wpointer-sign]
+ 348 | return D_801FD610;
+ | ^~~~~~~~~~
+cfe: Warning 709: src/audio/voice_internal.c, line 88: Incompatible pointer type assignment
+ errorCode = osVoiceSetWord(&gVoiceHandle, &dict->words[i]);
+ --------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/audio/voice_internal.c, line 92: Incompatible pointer type assignment
+ func_801A5A1C(&dict->words[i]);
+ --------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 835: src/audio/voice_internal.c, line 324: No prototype for the call to an anonymous function
+ u8 numSyllables = strlen(words);
+ ----------------------------^
+To achieve better type-checking, there should be a full prototype for
+the function being called.
+src/overlays/actors/ovl_Eff_Change/z_eff_change.c: In function 'EffChange_Init':
+src/overlays/actors/ovl_Eff_Change/z_eff_change.c:53:40: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 53 | func_80183430(&this->skeletonInfo, gameplay_keep_Blob_02900C, gameplay_keep_Blob_0281DC, this->jointTable,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_Eff_Change/z_eff_change.h:4,
+ from src/overlays/actors/ovl_Eff_Change/z_eff_change.c:7:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Eff_Change/z_eff_change.c:53:67: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 53 | func_80183430(&this->skeletonInfo, gameplay_keep_Blob_02900C, gameplay_keep_Blob_0281DC, this->jointTable,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Eff_Change/z_eff_change.c:54:23: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 54 | this->morphTable, NULL);
+ | ~~~~^~~~~~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_Eff_Change/z_eff_change.c:55:40: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 55 | func_801834A8(&this->skeletonInfo, gameplay_keep_Blob_0281DC);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+cfe: Warning 709: src/overlays/actors/ovl_Eff_Change/z_eff_change.c, line 53: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, gameplay_keep_Blob_02900C, gameplay_keep_Blob_0281DC, this->jointTable,
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Eff_Change/z_eff_change.c, line 53: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, gameplay_keep_Blob_02900C, gameplay_keep_Blob_0281DC, this->jointTable,
+ ------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Eff_Change/z_eff_change.c, line 54: Incompatible pointer type assignment
+ this->morphTable, (void*)0 );
+ ----------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Eff_Change/z_eff_change.c, line 55: Incompatible pointer type assignment
+ func_801834A8(&this->skeletonInfo, gameplay_keep_Blob_0281DC);
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_Jso2/z_en_jso2.c: In function 'func_80A778F8':
+src/overlays/actors/ovl_En_Jso2/z_en_jso2.c:385:37: warning: passing argument 2 of 'func_80122744' from incompatible pointer type [-Wincompatible-pointer-types]
+ 385 | func_80122744(play, &this->unk_27C, 1, &D_80A7B6F4);
+ | ^~~~~~~~~~~~~~
+ | |
+ | char (*)[8]
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_Jso2/z_en_jso2.h:4,
+ from src/overlays/actors/ovl_En_Jso2/z_en_jso2.c:7:
+include/functions.h:807:58: note: expected 'struct_80122744_arg1 *' but argument is of type 'char (*)[8]'
+ 807 | s32 func_80122744(PlayState* play, struct_80122744_arg1* arg1, u32 arg2, Vec3s* arg3);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Jso2/z_en_jso2.c:411:37: warning: passing argument 2 of 'func_80122760' from incompatible pointer type [-Wincompatible-pointer-types]
+ 411 | if (func_80122760(play, &this->unk_27C, 60.0f) != 0) {
+ | ^~~~~~~~~~~~~~
+ | |
+ | char (*)[8]
+include/functions.h:808:58: note: expected 'struct_80122744_arg1 *' but argument is of type 'char (*)[8]'
+ 808 | s32 func_80122760(PlayState* play, struct_80122744_arg1* arg1, f32 arg2);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Jso2/z_en_jso2.c, line 385: Incompatible pointer type assignment
+ func_80122744(play, &this->unk_27C, 1, &D_80A7B6F4);
+ ------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Jso2/z_en_jso2.c, line 411: Incompatible pointer type assignment
+ if (func_80122760(play, &this->unk_27C, 60.0f) != 0) {
+ ------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_Bsb/z_en_bsb.c: In function 'func_80C0DB18':
+src/overlays/actors/ovl_En_Bsb/z_en_bsb.c:1129:41: warning: left-hand operand of comma expression has no effect [-Wunused-value]
+ 1129 | CutsceneManager_Queue(((NULL, this->unk_02CC))[3]);
+ | ^
+cfe: Warning 624: src/overlays/actors/ovl_En_Test4/z_en_test4.c, line 37: Trailing comma in enumerator list
+ TIME_NIGHT,
+ ----------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: /home/louist103/mm-hm/src/overlays/actors/ovl_Boss_05/z_boss_05.h, line 16: Trailing comma in enumerator list
+ BIO_DEKU_BABA_TYPE_10 = 10,
+ --------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+src/overlays/actors/ovl_En_Gm/z_en_gm.c: In function 'func_8094EE84':
+src/overlays/actors/ovl_En_Gm/z_en_gm.c:964:23: warning: assignment to 's32 *' {aka 'int *'} from incompatible pointer type 'MsgScript *' {aka 'unsigned char *'} [-Wincompatible-pointer-types]
+ 964 | this->unk_264 = func_8094EDBC(this, play);
+ | ^
+src/overlays/actors/ovl_En_Gm/z_en_gm.c: In function 'func_80950DB8':
+src/overlays/actors/ovl_En_Gm/z_en_gm.c:1838:52: warning: passing argument 3 of 'MsgEvent_RunScript' from incompatible pointer type [-Wincompatible-pointer-types]
+ 1838 | if (MsgEvent_RunScript(&this->actor, play, this->unk_264, this->unk_3E4, &this->unk_25C)) {
+ | ~~~~^~~~~~~~~
+ | |
+ | s32 * {aka int *}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_Gm/z_en_gm.h:4,
+ from src/overlays/actors/ovl_En_Gm/z_en_gm.c:7:
+include/functions.h:778:66: note: expected 'MsgScript *' {aka 'unsigned char *'} but argument is of type 's32 *' {aka 'int *'}
+ 778 | s32 MsgEvent_RunScript(Actor* actor, PlayState* play, MsgScript* script, MsgEventCallback callback, s32* pos);
+ | ~~~~~~~~~~~^~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Gm/z_en_gm.c, line 964: Incompatible pointer type assignment
+ this->unk_264 = func_8094EDBC(this, play);
+ ----------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Gm/z_en_gm.c, line 1838: Incompatible pointer type assignment
+ if (MsgEvent_RunScript(&this->actor, play, this->unk_264, this->unk_3E4, &this->unk_25C)) {
+ ---------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_Test7/z_en_test7.c: In function 'EnTest7_Init':
+src/overlays/actors/ovl_En_Test7/z_en_test7.c:400:36: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 400 | func_80183430(&this->unk_18CC, &gameplay_keep_Blob_085640, &gameplay_keep_Blob_083534, this->unk_18FC,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_Test7/z_en_test7.h:4,
+ from src/overlays/actors/ovl_En_Test7/z_en_test7.c:8:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test7/z_en_test7.c:400:64: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 400 | func_80183430(&this->unk_18CC, &gameplay_keep_Blob_085640, &gameplay_keep_Blob_083534, this->unk_18FC,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test7/z_en_test7.c:401:23: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 401 | this->unk_1BA8, NULL);
+ | ~~~~^~~~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_En_Test7/z_en_test7.c:402:36: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 402 | func_801834A8(&this->unk_18CC, &gameplay_keep_Blob_083534);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test7/z_en_test7.c: In function 'EnTest7_Draw':
+src/overlays/actors/ovl_En_Test7/z_en_test7.c:969:55: warning: passing argument 4 of 'func_8018450C' from incompatible pointer type [-Wincompatible-pointer-types]
+ 969 | func_8018450C(play, &this->unk_18CC, mtx, func_80AF31D0, NULL, &this->actor);
+ | ^~~~~~~~~~~~~
+ | |
+ | s32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *) {aka int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)}
+include/functions.h:1172:98: note: expected 'OverrideKeyframeDrawScaled' {aka 'int (*)(struct PlayState *, struct SkeletonInfo *, int, Gfx **, unsigned char *, void *, Vec3f *, Vec3s *, Vec3f *)'} but argument is of type 's32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *)' {aka 'int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)'}
+ 1172 | void func_8018450C(PlayState* play, SkeletonInfo* skeleton, Mtx* mtx, OverrideKeyframeDrawScaled overrideKeyframeDraw, PostKeyframeDrawScaled postKeyframeDraw, void* arg);
+ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Test7/z_en_test7.c, line 400: Incompatible pointer type assignment
+ func_80183430(&this->unk_18CC, &gameplay_keep_Blob_085640, &gameplay_keep_Blob_083534, this->unk_18FC,
+ -----------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test7/z_en_test7.c, line 400: Incompatible pointer type assignment
+ func_80183430(&this->unk_18CC, &gameplay_keep_Blob_085640, &gameplay_keep_Blob_083534, this->unk_18FC,
+ ---------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test7/z_en_test7.c, line 401: Incompatible pointer type assignment
+ this->unk_1BA8, (void*)0 );
+ ----------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test7/z_en_test7.c, line 402: Incompatible pointer type assignment
+ func_801834A8(&this->unk_18CC, &gameplay_keep_Blob_083534);
+ -----------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test7/z_en_test7.c, line 969: Incompatible pointer type assignment
+ func_8018450C(play, &this->unk_18CC, mtx, func_80AF31D0, (void*)0 , &this->actor);
+ ------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 624: /home/louist103/mm-hm/src/overlays/actors/ovl_En_Invadepoh/z_en_invadepoh.h, line 181: Trailing comma in enumerator list
+ ENINVADEPOH_ALIEN_ABDUCTOR,
+ --------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+src/overlays/actors/ovl_En_Test/z_en_test.c: In function 'EnTest_Init':
+src/overlays/actors/ovl_En_Test/z_en_test.c:189:40: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 189 | func_80183430(&this->skeletonInfo, &gameplay_keep_Blob_06EB70, &gameplay_keep_Blob_06BB0C, this->unk_178,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_Test/z_en_test.h:4,
+ from src/overlays/actors/ovl_En_Test/z_en_test.c:7:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test/z_en_test.c:189:68: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 189 | func_80183430(&this->skeletonInfo, &gameplay_keep_Blob_06EB70, &gameplay_keep_Blob_06BB0C, this->unk_178,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test/z_en_test.c:190:23: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 190 | this->unk_1C0, NULL);
+ | ~~~~^~~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_En_Test/z_en_test.c:191:40: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 191 | func_801834A8(&this->skeletonInfo, &gameplay_keep_Blob_06BB0C);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Test/z_en_test.c: In function 'EnTest_Draw':
+src/overlays/actors/ovl_En_Test/z_en_test.c:271:55: warning: passing argument 4 of 'func_8018450C' from incompatible pointer type [-Wincompatible-pointer-types]
+ 271 | func_8018450C(play, &this->skeletonInfo, mtx, EnTest_OverrideKeyframeDraw, NULL, thisx);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | s32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *) {aka int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)}
+include/functions.h:1172:98: note: expected 'OverrideKeyframeDrawScaled' {aka 'int (*)(struct PlayState *, struct SkeletonInfo *, int, Gfx **, unsigned char *, void *, Vec3f *, Vec3s *, Vec3f *)'} but argument is of type 's32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *)' {aka 'int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)'}
+ 1172 | void func_8018450C(PlayState* play, SkeletonInfo* skeleton, Mtx* mtx, OverrideKeyframeDrawScaled overrideKeyframeDraw, PostKeyframeDrawScaled postKeyframeDraw, void* arg);
+ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Test/z_en_test.c, line 189: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, &gameplay_keep_Blob_06EB70, &gameplay_keep_Blob_06BB0C, this->unk_178,
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test/z_en_test.c, line 189: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, &gameplay_keep_Blob_06EB70, &gameplay_keep_Blob_06BB0C, this->unk_178,
+ -------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test/z_en_test.c, line 190: Incompatible pointer type assignment
+ this->unk_1C0, (void*)0 );
+ ----------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test/z_en_test.c, line 191: Incompatible pointer type assignment
+ func_801834A8(&this->skeletonInfo, &gameplay_keep_Blob_06BB0C);
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Test/z_en_test.c, line 271: Incompatible pointer type assignment
+ func_8018450C(play, &this->skeletonInfo, mtx, EnTest_OverrideKeyframeDraw, (void*)0 , thisx);
+ ------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_Fall2/z_en_fall2.c: In function 'EnFall2_Init':
+src/overlays/actors/ovl_En_Fall2/z_en_fall2.c:38:40: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 38 | func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_Fall2/z_en_fall2.h:4,
+ from src/overlays/actors/ovl_En_Fall2/z_en_fall2.c:7:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Fall2/z_en_fall2.c:38:66: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 38 | func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_En_Fall2/z_en_fall2.c:38:110: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 38 | func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ | ~~~~^~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_En_Fall2/z_en_fall2.c:40:40: warning: passing argument 2 of 'func_801835EC' from incompatible pointer type [-Wincompatible-pointer-types]
+ 40 | func_801835EC(&this->skeletonInfo, object_fall2_Blob_005EF4);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 * {aka unsigned char *}
+include/functions.h:1160:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 *' {aka 'unsigned char *'}
+ 1160 | void func_801835EC(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Fall2/z_en_fall2.c, line 38: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Fall2/z_en_fall2.c, line 38: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ -----------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Fall2/z_en_fall2.c, line 38: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, object_fall2_Blob_008898, object_fall2_Blob_005EF4, this->unk174, this->unk228,
+ -------------------------------------------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Fall2/z_en_fall2.c, line 40: Incompatible pointer type assignment
+ func_801835EC(&this->skeletonInfo, object_fall2_Blob_005EF4);
+ ---------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:37: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 90 | static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:37: note: (near initialization for 'D_80BEB348[0]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:58: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 90 | static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:58: note: (near initialization for 'D_80BEB348[1]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:78: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 90 | static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:90:78: note: (near initialization for 'D_80BEB348[2]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:91:37: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 91 | &gDotourEyeLookDownTex, &gDotourEyeSquintTex };
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:91:37: note: (near initialization for 'D_80BEB348[3]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:91:61: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 91 | &gDotourEyeLookDownTex, &gDotourEyeSquintTex };
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:91:61: note: (near initialization for 'D_80BEB348[4]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:37: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 93 | static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:37: note: (near initialization for 'D_80BEB35C[0]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:61: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 93 | static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:61: note: (near initialization for 'D_80BEB35C[1]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:84: warning: initialization of 'void **' from incompatible pointer type 'u64 (*)[]' {aka 'long long unsigned int (*)[]'} [-Wincompatible-pointer-types]
+ 93 | static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ | ^
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:93:84: note: (near initialization for 'D_80BEB35C[2]')
+src/overlays/actors/ovl_En_Dt/z_en_dt.c: In function 'EnDt_Update':
+src/overlays/actors/ovl_En_Dt/z_en_dt.c:649:50: warning: passing argument 3 of 'CollisionCheck_SetOC' from incompatible pointer type [-Wincompatible-pointer-types]
+ 649 | CollisionCheck_SetOC(play, &play->colChkCtx, &this->collider);
+ | ^~~~~~~~~~~~~~~
+ | |
+ | ColliderCylinder *
+In file included from include/z64actor.h:9,
+ from include/z64.h:31,
+ from include/global.h:4,
+ from src/overlays/actors/ovl_En_Dt/z_en_dt.h:4,
+ from src/overlays/actors/ovl_En_Dt/z_en_dt.c:7:
+include/z64collision_check.h:576:92: note: expected 'Collider *' but argument is of type 'ColliderCylinder *'
+ 576 | s32 CollisionCheck_SetOC(struct PlayState* play, CollisionCheckContext* colCtxt, Collider* collider);
+ | ~~~~~~~~~~^~~~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 90: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ ------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 90: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ ---------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 90: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB348[] = { &gDotourEyeShockTex, &gDotourEyeOpenTex, &gDotourEyeClosedTex,
+ -----------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 91: Incompatible pointer type assignment
+ &gDotourEyeLookDownTex, &gDotourEyeSquintTex };
+ ------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 91: Incompatible pointer type assignment
+ &gDotourEyeLookDownTex, &gDotourEyeSquintTex };
+ ------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 93: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ ------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 93: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ ------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 93: Incompatible pointer type assignment
+ static TexturePtr* D_80BEB35C[] = { &gDotourEyebrowHighTex, &gDotourEyebrowMidTex, &gDotourEyebrowLowTex };
+ -----------------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_En_Dt/z_en_dt.c, line 649: Incompatible pointer type assignment
+ CollisionCheck_SetOC(play, &play->colChkCtx, &this->collider);
+ -------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_En_An/z_en_an.c: In function 'EnAn_Talk':
+src/overlays/actors/ovl_En_An/z_en_an.c:3220:52: warning: passing argument 3 of 'MsgEvent_RunScript' from incompatible pointer type [-Wincompatible-pointer-types]
+ 3220 | if (MsgEvent_RunScript(&this->actor, play, this->msgEventScript, this->msgEventFunc, &this->msgScriptResumePos)) {
+ | ~~~~^~~~~~~~~~~~~~~~
+ | |
+ | s32 * {aka int *}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_En_An/z_en_an.h:4,
+ from src/overlays/actors/ovl_En_An/z_en_an.c:7:
+include/functions.h:778:66: note: expected 'MsgScript *' {aka 'unsigned char *'} but argument is of type 's32 *' {aka 'int *'}
+ 778 | s32 MsgEvent_RunScript(Actor* actor, PlayState* play, MsgScript* script, MsgEventCallback callback, s32* pos);
+ | ~~~~~~~~~~~^~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_En_An/z_en_an.c, line 3220: Incompatible pointer type assignment
+ if (MsgEvent_RunScript(&this->actor, play, this->msgEventScript, this->msgEventFunc, &this->msgScriptResumePos)) {
+ ---------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c: In function 'DemoMoonend_Init':
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:49:44: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 49 | func_80183430(&this->skeletonInfo, &object_moonend_Blob_00B5A0, &object_moonend_Blob_001214, this->jointTable,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.h:4,
+ from src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:7:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:49:73: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 49 | func_80183430(&this->skeletonInfo, &object_moonend_Blob_00B5A0, &object_moonend_Blob_001214, this->jointTable,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:50:27: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 50 | this->morphTable, NULL);
+ | ~~~~^~~~~~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:51:44: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 51 | func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c: In function 'func_80C17C48':
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:113:56: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 113 | func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:119:56: warning: passing argument 2 of 'func_801834A8' from incompatible pointer type [-Wincompatible-pointer-types]
+ 119 | func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1157:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1157 | void func_801834A8(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c: In function 'DemoMoonend_Draw':
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:203:55: warning: passing argument 4 of 'func_8018450C' from incompatible pointer type [-Wincompatible-pointer-types]
+ 203 | func_8018450C(play, &this->skeletonInfo, mtx, func_80C17E70, func_80C17EE0, &this->actor);
+ | ^~~~~~~~~~~~~
+ | |
+ | s32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *) {aka int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)}
+include/functions.h:1172:98: note: expected 'OverrideKeyframeDrawScaled' {aka 'int (*)(struct PlayState *, struct SkeletonInfo *, int, Gfx **, unsigned char *, void *, Vec3f *, Vec3s *, Vec3f *)'} but argument is of type 's32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *)' {aka 'int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)'}
+ 1172 | void func_8018450C(PlayState* play, SkeletonInfo* skeleton, Mtx* mtx, OverrideKeyframeDrawScaled overrideKeyframeDraw, PostKeyframeDrawScaled postKeyframeDraw, void* arg);
+ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c:203:70: warning: passing argument 5 of 'func_8018450C' from incompatible pointer type [-Wincompatible-pointer-types]
+ 203 | func_8018450C(play, &this->skeletonInfo, mtx, func_80C17E70, func_80C17EE0, &this->actor);
+ | ^~~~~~~~~~~~~
+ | |
+ | s32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *) {aka int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)}
+include/functions.h:1172:143: note: expected 'PostKeyframeDrawScaled' {aka 'void (*)(struct PlayState *, struct SkeletonInfo *, int, Gfx **, unsigned char *, void *, Vec3f *, Vec3s *, Vec3f *)'} but argument is of type 's32 (*)(PlayState *, SkeletonInfo *, s32, Gfx **, u8 *, Actor *, Vec3f *, Vec3s *, Vec3f *)' {aka 'int (*)(PlayState *, SkeletonInfo *, int, Gfx **, unsigned char *, Actor *, Vec3f *, Vec3s *, Vec3f *)'}
+ 1172 | void func_8018450C(PlayState* play, SkeletonInfo* skeleton, Mtx* mtx, OverrideKeyframeDrawScaled overrideKeyframeDraw, PostKeyframeDrawScaled postKeyframeDraw, void* arg);
+ | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 49: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, &object_moonend_Blob_00B5A0, &object_moonend_Blob_001214, this->jointTable,
+ -------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 49: Incompatible pointer type assignment
+ func_80183430(&this->skeletonInfo, &object_moonend_Blob_00B5A0, &object_moonend_Blob_001214, this->jointTable,
+ ------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 50: Incompatible pointer type assignment
+ this->morphTable, (void*)0 );
+ --------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 51: Incompatible pointer type assignment
+ func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ -------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 113: Incompatible pointer type assignment
+ func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ -------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 119: Incompatible pointer type assignment
+ func_801834A8(&this->skeletonInfo, &object_moonend_Blob_001214);
+ -------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 203: Incompatible pointer type assignment
+ func_8018450C(play, &this->skeletonInfo, mtx, func_80C17E70, func_80C17EE0, &this->actor);
+ ------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c, line 203: Incompatible pointer type assignment
+ func_8018450C(play, &this->skeletonInfo, mtx, func_80C17E70, func_80C17EE0, &this->actor);
+ ---------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c: In function 'DemoSyoten_Init':
+src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c:76:43: warning: passing argument 2 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 76 | func_80183430(&this->unk_144, &object_syoten_Blob_001328, &object_syoten_Blob_00023C, this->unk_174,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+In file included from include/global.h:5,
+ from src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.h:4,
+ from src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c:7:
+include/functions.h:1155:66: note: expected 'Struct_801BFA14_Arg1 *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c:76:71: warning: passing argument 3 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 76 | func_80183430(&this->unk_144, &object_syoten_Blob_001328, &object_syoten_Blob_00023C, this->unk_174,
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1155:89: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c:77:31: warning: passing argument 5 of 'func_80183430' from incompatible pointer type [-Wincompatible-pointer-types]
+ 77 | this->unk_2A6, NULL);
+ | ~~~~^~~~~~~~~
+ | |
+ | Vec3s *
+include/functions.h:1155:118: note: expected 's16 *' {aka 'short int *'} but argument is of type 'Vec3s *'
+ 1155 | void func_80183430(SkeletonInfo* skeleton, Struct_801BFA14_Arg1* arg1, SkeletonInfo_1C* arg2, Vec3s* frameData, s16* arg4, UnkKeyframeCallback* callbacks);
+ | ~~~~~^~~~
+src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c:78:43: warning: passing argument 2 of 'func_801835EC' from incompatible pointer type [-Wincompatible-pointer-types]
+ 78 | func_801835EC(&this->unk_144, &object_syoten_Blob_00023C);
+ | ^~~~~~~~~~~~~~~~~~~~~~~~~~
+ | |
+ | u8 (*)[] {aka unsigned char (*)[]}
+include/functions.h:1160:61: note: expected 'SkeletonInfo_1C *' but argument is of type 'u8 (*)[]' {aka 'unsigned char (*)[]'}
+ 1160 | void func_801835EC(SkeletonInfo* skeleton, SkeletonInfo_1C* arg1);
+ | ~~~~~~~~~~~~~~~~~^~~~
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c, line 76: Incompatible pointer type assignment
+ func_80183430(&this->unk_144, &object_syoten_Blob_001328, &object_syoten_Blob_00023C, this->unk_174,
+ ------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c, line 76: Incompatible pointer type assignment
+ func_80183430(&this->unk_144, &object_syoten_Blob_001328, &object_syoten_Blob_00023C, this->unk_174,
+ ----------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c, line 77: Incompatible pointer type assignment
+ this->unk_2A6, (void*)0 );
+ ------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c, line 78: Incompatible pointer type assignment
+ func_801835EC(&this->unk_144, &object_syoten_Blob_00023C);
+ ------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+In file included from include/PR/mbi.h:61,
+ from include/PR/gbi.h:1,
+ from include/ultra64.h:5,
+ from include/z64.h:11,
+ from include/global.h:4,
+ from src/overlays/actors/ovl_Boss_07/z_boss_07.h:4,
+ from src/overlays/actors/ovl_Boss_07/z_boss_07.c:7:
+include/PR/gbi.h:3449:54: warning: comparison between 'enum MajorasIncarnationLimb' and 'enum MajorasWrathLimb' [-Wenum-compare]
+ 3449 | #define MAX(a, b) ((a) > (b) ? (a) : (b))
+ | ^
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:28: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:55: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:82:35: note: in expansion of macro 'MAJORAS_LIMB_COUNT'
+ 82 | /* 0x01DC */ Vec3s jointTable[MAJORAS_LIMB_COUNT];
+ | ^~~~~~~~~~~~~~~~~~
+include/PR/gbi.h:3449:54: warning: comparison between 'enum MajorasIncarnationLimb' and 'enum MajorasWrathLimb' [-Wenum-compare]
+ 3449 | #define MAX(a, b) ((a) > (b) ? (a) : (b))
+ | ^
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:28: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:55: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:82:35: note: in expansion of macro 'MAJORAS_LIMB_COUNT'
+ 82 | /* 0x01DC */ Vec3s jointTable[MAJORAS_LIMB_COUNT];
+ | ^~~~~~~~~~~~~~~~~~
+include/PR/gbi.h:3449:54: warning: comparison between 'enum MajorasIncarnationLimb' and 'enum MajorasWrathLimb' [-Wenum-compare]
+ 3449 | #define MAX(a, b) ((a) > (b) ? (a) : (b))
+ | ^
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:28: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:55: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:83:35: note: in expansion of macro 'MAJORAS_LIMB_COUNT'
+ 83 | /* 0x0284 */ Vec3s morphTable[MAJORAS_LIMB_COUNT];
+ | ^~~~~~~~~~~~~~~~~~
+include/PR/gbi.h:3449:54: warning: comparison between 'enum MajorasIncarnationLimb' and 'enum MajorasWrathLimb' [-Wenum-compare]
+ 3449 | #define MAX(a, b) ((a) > (b) ? (a) : (b))
+ | ^
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:28: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:14:55: note: in expansion of macro 'MAX'
+ 14 | #define MAJORAS_LIMB_COUNT MAX(MAJORAS_MASK_LIMB_MAX, MAX(MAJORAS_INCARNATION_LIMB_MAX, MAJORAS_WRATH_LIMB_MAX))
+ | ^~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.h:83:35: note: in expansion of macro 'MAJORAS_LIMB_COUNT'
+ 83 | /* 0x0284 */ Vec3s morphTable[MAJORAS_LIMB_COUNT];
+ | ^~~~~~~~~~~~~~~~~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.c: In function 'Boss07_Wrath_GrabPlayer':
+src/overlays/actors/ovl_Boss_07/z_boss_07.c:1626:71: warning: passing argument 4 of 'Actor_GetPlayerImpact' from incompatible pointer type [-Wincompatible-pointer-types]
+ 1626 | if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp2C) >= 0.0f) && (sp2C == 1)) {
+ | ^~~~~
+ | |
+ | s32 * {aka int *}
+In file included from include/global.h:5:
+include/functions.h:303:85: note: expected 'PlayerImpactType *' but argument is of type 's32 *' {aka 'int *'}
+ 303 | f32 Actor_GetPlayerImpact(PlayState* play, f32 range, Vec3f* pos, PlayerImpactType* type);
+ | ~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.c: In function 'Boss07_Wrath_ThrowPlayer':
+src/overlays/actors/ovl_Boss_07/z_boss_07.c:1663:75: warning: passing argument 4 of 'Actor_GetPlayerImpact' from incompatible pointer type [-Wincompatible-pointer-types]
+ 1663 | if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp30) >= 0.0f) && (sp30 == 1)) {
+ | ^~~~~
+ | |
+ | s32 * {aka int *}
+include/functions.h:303:85: note: expected 'PlayerImpactType *' but argument is of type 's32 *' {aka 'int *'}
+ 303 | f32 Actor_GetPlayerImpact(PlayState* play, f32 range, Vec3f* pos, PlayerImpactType* type);
+ | ~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.c: In function 'Boss07_Wrath_WhipCollisionCheck':
+src/overlays/actors/ovl_Boss_07/z_boss_07.c:1898:75: warning: passing argument 4 of 'Actor_GetPlayerImpact' from incompatible pointer type [-Wincompatible-pointer-types]
+ 1898 | if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp98) >= 0.0f) && (sp98 != 1)) {
+ | ^~~~~
+ | |
+ | s32 * {aka int *}
+include/functions.h:303:85: note: expected 'PlayerImpactType *' but argument is of type 's32 *' {aka 'int *'}
+ 303 | f32 Actor_GetPlayerImpact(PlayState* play, f32 range, Vec3f* pos, PlayerImpactType* type);
+ | ~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.c: In function 'Boss07_Incarnation_Run':
+src/overlays/actors/ovl_Boss_07/z_boss_07.c:3211:68: warning: passing argument 4 of 'Actor_GetPlayerImpact' from incompatible pointer type [-Wincompatible-pointer-types]
+ 3211 | if ((Actor_GetPlayerImpact(play, 5.0f, &this->actor.world.pos, &sp2C) >= 0.0f) && (sp2C == 0)) {
+ | ^~~~~
+ | |
+ | s32 * {aka int *}
+include/functions.h:303:85: note: expected 'PlayerImpactType *' but argument is of type 's32 *' {aka 'int *'}
+ 303 | f32 Actor_GetPlayerImpact(PlayState* play, f32 range, Vec3f* pos, PlayerImpactType* type);
+ | ~~~~~~~~~~~~~~~~~~^~~~
+src/overlays/actors/ovl_Boss_07/z_boss_07.c: In function 'Boss07_Top_CollisionCheck':
+src/overlays/actors/ovl_Boss_07/z_boss_07.c:5795:72: warning: passing argument 4 of 'Actor_GetPlayerImpact' from incompatible pointer type [-Wincompatible-pointer-types]
+ 5795 | if ((Actor_GetPlayerImpact(play, 5.0f, &this->actor.world.pos, &sp3C) >= 0.0f) && (sp3C == 0)) {
+ | ^~~~~
+ | |
+ | s32 * {aka int *}
+include/functions.h:303:85: note: expected 'PlayerImpactType *' but argument is of type 's32 *' {aka 'int *'}
+ 303 | f32 Actor_GetPlayerImpact(PlayState* play, f32 range, Vec3f* pos, PlayerImpactType* type);
+ | ~~~~~~~~~~~~~~~~~~^~~~
+cfe: Warning 624: /home/louist103/mm-hm/src/overlays/actors/ovl_Boss_07/z_boss_07.h, line 29: Trailing comma in enumerator list
+ MAJORAS_REMAINS = 200,
+ ---------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 51: Trailing comma in enumerator list
+ MAJORAS_WRATH_DMGEFF_F,
+ ----------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 64: Trailing comma in enumerator list
+ MAJORAS_INCARNATION_DMGEFF_F,
+ ----------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 73: Trailing comma in enumerator list
+ MAJORAS_MASK_DMGEFF_F = 0xF,
+ ---------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 86: Trailing comma in enumerator list
+ MAJORAS_REMAINS_DMGEFF_F,
+ ------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 96: Trailing comma in enumerator list
+ MAJORAS_TOP_DMGEFF_F,
+ --------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 121: Trailing comma in enumerator list
+ MAJORAS_WRATH_ATTACK_MAX,
+ ------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 128: Trailing comma in enumerator list
+ MAJORAS_INCARNATION_STATE_MAX,
+ -----------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 135: Trailing comma in enumerator list
+ MAJORAS_MASK_SPIN_STATE_MAX,
+ ---------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 145: Trailing comma in enumerator list
+ MAJORAS_MASK_BEAM_STATE_MAX,
+ ---------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 151: Trailing comma in enumerator list
+ MAJORAS_PROJECTILE_STATE_MAX,
+ ----------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 160: Trailing comma in enumerator list
+ MAJORAS_REMAINS_ACTIVATE = 20,
+ -----------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 167: Trailing comma in enumerator list
+ MAJORAS_REMAINS_CS_ATTACH,
+ -------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 173: Trailing comma in enumerator list
+ MAJORAS_TOP_STATE_MAX,
+ ---------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 181: Trailing comma in enumerator list
+ MAJORAS_MASK_INTRO_STATE_4,
+ --------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 189: Trailing comma in enumerator list
+ MAJORAS_MASK_DEATH_STATE_4,
+ --------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 198: Trailing comma in enumerator list
+ MAJORAS_INCARNATION_INTRO_STATE_5,
+ ---------------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 207: Trailing comma in enumerator list
+ MAJORAS_INCARNATION_DEATH_STATE_10 = 10,
+ ---------------------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 212: Trailing comma in enumerator list
+ MAJORAS_WRATH_INTRO_STATE_1,
+ ---------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 220: Trailing comma in enumerator list
+ MAJORAS_WRATH_DEATH_STATE_4,
+ ---------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 233: Trailing comma in enumerator list
+ MAJORAS_DAMAGE_STATE_41,
+ -----------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 243: Trailing comma in enumerator list
+ MAJORAS_STATIC_CS_STATE_6,
+ -------------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 709: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 1626: Incompatible pointer type assignment
+ if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp2C) >= 0.0f) && (sp2C == 1)) {
+ ----------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 1663: Incompatible pointer type assignment
+ if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp30) >= 0.0f) && (sp30 == 1)) {
+ --------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 1898: Incompatible pointer type assignment
+ if ((Actor_GetPlayerImpact(play, 1000.0f, &this->actor.world.pos, &sp98) >= 0.0f) && (sp98 != 1)) {
+ --------------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 624: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 2522: Trailing comma in enumerator list
+ MAJORAS_WRATH_PART_MAX,
+ --------------------------^
+The use of a trailing comma in an enumerator list is not standard C. There
+may be portability problems.
+cfe: Warning 709: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 3211: Incompatible pointer type assignment
+ if ((Actor_GetPlayerImpact(play, 5.0f, &this->actor.world.pos, &sp2C) >= 0.0f) && (sp2C == 0)) {
+ -------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 709: src/overlays/actors/ovl_Boss_07/z_boss_07.c, line 5795: Incompatible pointer type assignment
+ if ((Actor_GetPlayerImpact(play, 5.0f, &this->actor.world.pos, &sp3C) >= 0.0f) && (sp3C == 0)) {
+ -----------------------------------------------------------------------^
+The type pointed to by the left-hand side of simple assignment
+statement is incompatible with the type pointed to by the right-hand side.
+cfe: Warning 835: src/code/speed_meter.c, line 225: No prototype for the call to ZeldaArena_IsInitialized
+ if (ZeldaArena_IsInitialized()) {
+ ------------------------------------^
+To achieve better type-checking, there should be a full prototype for
+the function being called.
+src/code/z_map_disp.c: In function 'MapDisp_AwaitGameplayDangeonKeep':
+src/code/z_map_disp.c:539:9: warning: the comparison will always evaluate as 'true' for the address of 'objectCtx' will never be NULL [-Waddress]
+ 539 | if (&play->objectCtx) {}
+ | ^
+In file included from include/global.h:4,
+ from src/code/z_map_disp.c:1:
+include/z64.h:224:33: note: 'objectCtx' declared here
+ 224 | /* 0x17D88 */ ObjectContext objectCtx;
+ | ^~~~~~~~~