summaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-04-28 19:45:09 +0200
committerBad Diode <bd@badd10de.dev>2021-04-28 19:45:09 +0200
commitdbb61a0a339306be380ff4b3bffad64b7e474d24 (patch)
tree47e19be43ccbb774d1bdf7dbb9f3a4539c83bd06 /src/common.h
parent3e0bb6c9d1f788b51d26ed55acd32291df721129 (diff)
downloadgba-experiments-dbb61a0a339306be380ff4b3bffad64b7e474d24.tar.gz
gba-experiments-dbb61a0a339306be380ff4b3bffad64b7e474d24.zip
Update main function to use the BIOS VSync
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index dac48ad..7695683 100644
--- a/src/common.h
+++ b/src/common.h
@@ -516,4 +516,9 @@ irq_init() {
516 IRQ_CTRL = 1; 516 IRQ_CTRL = 1;
517} 517}
518 518
519// Stub function pointer needed for when we want to enable interrupts that don't
520// require a custom function, such as for the BIOS VSync.
521void
522irq_stub() {}
523
519#endif // GBAEXP_COMMON_H 524#endif // GBAEXP_COMMON_H