Skip to content

Commit

Permalink
Fixed potential unaligned issue in PC screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedara committed Jan 14, 2025
1 parent 1c765d1 commit 9bf7a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pokemon_storage_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ struct PokemonStorageSystemData
u16 scrollUnused5; // Never read
u16 scrollUnused6; // Never read
u8 filler1[22];
u8 boxTitleTiles[1024];
u8 ALIGNED(2) boxTitleTiles[1024];
u8 boxTitleCycleId;
u8 wallpaperLoadState; // Written to, but never read.
u8 wallpaperLoadBoxId;
Expand Down

0 comments on commit 9bf7a77

Please sign in to comment.