update some actors to use sizeof for mSize, endian swap J2DScreen related structs, add 64bit endian swapping

game appears to be hanging on fully initing some processes, so while there isnt an immediate crash, nothing seems to be happening
This commit is contained in:
CraftyBoss
2026-03-01 04:24:38 -08:00
committed by PJB3005
parent 5832f70384
commit 3e4b9bf59b
30 changed files with 364 additions and 282 deletions
+4 -4
View File
@@ -8,11 +8,11 @@
*
*/
struct ResNTAB {
u16 mEntryNum;
u16 mPad0;
BE(u16) mEntryNum;
BE(u16) mPad0;
struct Entry {
u16 mKeyCode;
u16 mOffs;
BE(u16) mKeyCode;
BE(u16) mOffs;
} mEntries[1];
inline const char* getName(u32 index) const {