Fix RL compressed data alignment

`RLUnComp`, like `LZ77UnComp`, expects the source data to be word-aligned.
So, to mirror how lz-compressed data is defined as `u32[]` to enforce
word-alignment, this changes rl-compressed data to be defined as `u32[]`
to enforce word-alignment.
This commit is contained in:
Raymond Dodge
2025-07-06 13:49:47 -04:00
parent aac44d0f91
commit 80b9c23d0a
2 changed files with 15 additions and 15 deletions

View File

@@ -61,9 +61,9 @@ void LZ77UnCompWram(const u32 *src, void *dest);
void LZ77UnCompVram(const u32 *src, void *dest);
void RLUnCompWram(const void *src, void *dest);
void RLUnCompWram(const u32 *src, void *dest);
void RLUnCompVram(const void *src, void *dest);
void RLUnCompVram(const u32 *src, void *dest);
int MultiBoot(struct MultiBootParam *mp);