aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-28 22:01:07 +0200
committerBad Diode <bd@badd10de.dev>2021-05-28 22:01:07 +0200
commit5068ec8d19fb7248abfcd065e1890c85fd96566b (patch)
tree78f3dab9e5a9081f6b06cbb1dea1cd3727c489a1 /src/main.c
parent9c61e2e75220439e917fa5fba9d59014a2a5c43a (diff)
downloaduxngba-5068ec8d19fb7248abfcd065e1890c85fd96566b.tar.gz
uxngba-5068ec8d19fb7248abfcd065e1890c85fd96566b.zip
Add SYSTEM_WAIT configuration
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 7a2c397..2aa744c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -365,9 +365,12 @@ handle_input(Uxn *u) {
365 365
366static Uxn u; 366static Uxn u;
367EWRAM_BSS 367EWRAM_BSS
368static u8 umem[65536]; 368static u8 umem[KB(65)];
369 369
370int main(void) { 370int main(void) {
371 // Adjust system wait times.
372 SYSTEM_WAIT = SYSTEM_WAIT_CARTRIDGE;
373
371 // Initialize filesystem. 374 // Initialize filesystem.
372 fs_init(); 375 fs_init();
373 376