diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-08-02 17:04:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-02 17:04:08 -0600 |
| commit | 016b16a4845d51d32bbff97c29dbcf5509471e55 (patch) | |
| tree | 3268591e9cfb3f31ba66ffaed88bd6d97d68513a /src/buffers.h | |
| parent | 00067c03f66985ab894221f390cc92894be04945 (diff) | |
Fix menu bug & kart textures (#32)
* Fix menu bug
* Fix undefined behaviour
* Fix kart textures
* Fix boost texture
* Rename as per review
* Fix buffer overflows
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/buffers.h')
| -rw-r--r-- | src/buffers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffers.h b/src/buffers.h index 66f58ad1a..f9b6a535e 100644 --- a/src/buffers.h +++ b/src/buffers.h @@ -36,8 +36,8 @@ typedef union { * Likely over-sized due to encoded textures having variable size */ typedef struct { - char unk_00[0x920]; -} struct_D_802DFB80; // size = 0x920 + const char *unk_00; // Original 0x920 because compressed. But no longer compressed. +} struct_D_802DFB80; // size = 0x1000 typedef struct { u16 red:5; |
