diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3,7 +3,6 @@ #include "main.h" #include "demo.h" #include "ppu/ppu.h" -#include "ppu/internals.h" bool g_hh_run = true; volatile unsigned long g_hh_vcount; @@ -12,7 +11,7 @@ volatile unsigned short g_hh_hcount; void hh_ppu_vblank_interrupt() { static unsigned long frame = 0; hh_demo_loop(frame++); - hh_ppu_vram_flush(); + hh_ppu_flush(); } int main() { |