ks_nes_draw: more fixes, bug documentaiton, and score improvements

This commit is contained in:
Cuyler36
2025-10-28 07:50:32 -04:00
parent ca57bdaabe
commit 4b490c1aaa
2 changed files with 52 additions and 34 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ typedef struct ksNesOAMEntry {
typedef struct ksNesDrawCtx {
/* 0x0000 */ union {
u8 sprite_scanline_limit[KS_NES_SCANLINE_COUNT]; // tracks the number of sprites that have been drawn on each scanline
u8 sprite_scanline_limit[KS_NES_SCANLINE_SPRITE_OVERDRAW_COUNT]; // tracks the number of sprites that have been drawn on each scanline
u8 scanline_y_coords[2 * 256]; // tracks the Y coordinate of the top & bottom of each scanline
};