mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-26 06:16:24 -04:00
Endianness fixes in JAudio loading code
Not tested because I can't even get the code to init again due to the aforementioned race condition
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
|
||||
struct BinaryStreamFileTable {
|
||||
/* 0x0 */ u8 mIdentifier[4];
|
||||
/* 0x4 */ u32 mNumFiles;
|
||||
/* 0x8 */ int mFilePathOffsets[];
|
||||
/* 0x4 */ BE(u32) mNumFiles;
|
||||
/* 0x8 */ BE(int) mFilePathOffsets[];
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user