Fix ctb::data::TBlockData endian issues

This fixes some buggy cutscene camera positions and potentially
related crashes.
This commit is contained in:
Max Roncace
2026-03-25 20:27:35 -04:00
parent 85d3b982b2
commit 816d853002
3 changed files with 5 additions and 5 deletions
@@ -64,9 +64,9 @@ struct data {
};
struct TBlockData {
u32 size;
u16 scheme;
u16 IDSize;
BE(u32) size;
BE(u16) scheme;
BE(u16) IDSize;
u32 field_0x8[0];
};