diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-04-07 23:14:46 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-04-07 23:14:46 +0200 |
commit | 0daeed25c65412400e7b0b12ee1dc371c4060920 (patch) | |
tree | bf37543034f4b37e61269fa370342cc8694e1e39 /src/demo.c | |
parent | cc5fda1626ac77a74459bcfe3c422be3c2a5267b (diff) |
last-ditch debugging efforts
Diffstat (limited to 'src/demo.c')
-rw-r--r-- | src/demo.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -39,11 +39,14 @@ void hh_demo_setup() { g_hh_demo_balls[i].palette_index = i+1; g_hh_demo_balls[i].tilemap_index = 1; } - hh_ppu_flush(); + // hh_ppu_flush(); } void hh_demo_loop(unsigned long frame) { // if (frame % 300 == 0) hh_demo_setup(); + // + // if (frame > 1) return; + // frame = 40; // set background pattern position hh_ppu_update_background_pos((frame / 5) % HH_PPU_SPRITE_WIDTH, (frame / 20) % HH_PPU_SPRITE_HEIGHT); |