diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-02-24 15:24:55 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-02-24 15:24:55 +0100 |
commit | 5f5c6a410cafaa917ca3ff0a2a95bb1f2db4b980 (patch) | |
tree | ad1ff6847694c27da5e0a81324eeb505dfea3a6f /src/main.c | |
parent | 672982618cb3ea63f0305785d7c499c83ece145b (diff) |
ppusim refactor
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ hh_s_ppu_loc_sprite* hh_debug_circle_sprite() { } int main() { - // hh_ppu_init(); + hh_ppu_init(); // hh_ppu_update_aux((hh_s_ppu_loc_aux) { // .bg_shift_x = 0, @@ -29,11 +29,11 @@ int main() { free(sprite); while (1); + + hh_ppu_deinit(); } void hh_ppu_vblank_interrupt() { static unsigned long frame = 0; frame++; - - } |