aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 67490ab..3cb045d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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() {