diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ppu/internals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ppu/internals.c b/src/ppu/internals.c index b8d3e27..66c0ac1 100644 --- a/src/ppu/internals.c +++ b/src/ppu/internals.c @@ -25,7 +25,7 @@ hh_s_ppu_vram_data hh_ppu_2nat_bam(hh_s_ppu_loc_bam_entry e) { data[0] = HH_RESIZE(e.tilemap_index, 9, 0) << 0 | HH_RESIZE(e.palette_index, 2, 0) << 10 | e.vertical_flip << 13 | e.horizontal_flip << 14; - hh_s_ppu_vram_data out = {.data = data, .size = HH_PPU_VRAM_FAM_ENTRY_SIZE}; + hh_s_ppu_vram_data out = {.data = data, .size = HH_PPU_VRAM_BAM_ENTRY_SIZE}; return out; } |