Fix priority type u32 -> s32

This commit is contained in:
LagoLunatic
2025-03-10 20:37:31 -04:00
parent 6c4ce7ec80
commit b4a6abb121
4 changed files with 12 additions and 10 deletions
+3 -3
View File
@@ -19,9 +19,9 @@ struct JFWSystem {
static u32 fifoBufSize;
static u32 aramAudioBufSize;
static u32 aramGraphBufSize;
static u32 streamPriority;
static u32 decompPriority;
static u32 aPiecePriority;
static s32 streamPriority;
static s32 decompPriority;
static s32 aPiecePriority;
static ResFONT* systemFontRes;
static GXRenderModeObj* renderMode;
static u32 exConsoleBufferSize;
+2 -2
View File
@@ -31,8 +31,8 @@ private:
/* 0x10 */ u8 field_0x10[0xC];
};
inline void JUTCreateFifo(u32 bufSize) {
new JUTGraphFifo(bufSize);
inline JUTGraphFifo* JUTCreateFifo(u32 bufSize) {
return new JUTGraphFifo(bufSize);
}
#endif /* JUTGRAPHFIFO_H */