mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-21 22:10:59 -04:00
Fix priority type u32 -> s32
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user