From 20b0337e7858aaca42486e3a882632aae4c46c0b Mon Sep 17 00:00:00 2001 From: Cuyler36 Date: Tue, 28 Oct 2025 05:14:11 -0400 Subject: [PATCH] ks_nes_common: merge _pad_2F0 with mmc2_scanline_latch_tiles --- include/Famicom/ks_nes_common.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/Famicom/ks_nes_common.h b/include/Famicom/ks_nes_common.h index 71c9cf57..33a435c3 100644 --- a/include/Famicom/ks_nes_common.h +++ b/include/Famicom/ks_nes_common.h @@ -166,8 +166,7 @@ typedef struct ksNesDrawCtx { u8 scanline_y_coords[2 * 256]; // tracks the Y coordinate of the top & bottom of each scanline }; - /* 0x0200 */ u8 mmc2_scanline_latch_tiles[KS_NES_SCANLINE_COUNT]; // tracks which tiles should be accessible on each scanline based on MMC2 latch settings - /* 0x02F0 */ u8 _pad_02F0[0x10]; // might be included in mmc2_scanline_latch_tiles + /* 0x0200 */ u8 mmc2_scanline_latch_tiles[KS_NES_SCANLINE_COUNT + 16]; // tracks which tiles should be accessible on each scanline based on MMC2 latch settings /* 0x0300 */ u8 sprite_vertex_count[KS_NES_OAM_TABLE_SIZE]; /* 0x0340 */ ksNesSpriteQuadData sprite_quad_data[KS_NES_OAM_TABLE_SIZE]; /* 0x0B40 */ ksNesPPUScanlineState ppu_scanline_regs[KS_NES_SCANLINE_COUNT];