aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2023-05-28 09:27:03 +0200
committerBad Diode <bd@badd10de.dev>2023-05-28 09:27:03 +0200
commitaf68ac1e1bb77fd821e042d2c8ea9a159c970d20 (patch)
treedbe9ed56d0a846c1c79db3c39e9e6f9655be6821 /src/main.c
parentaa3db2f8c3af8163a707a87cd946c2a30070ced4 (diff)
downloadstepper-af68ac1e1bb77fd821e042d2c8ea9a159c970d20.tar.gz
stepper-af68ac1e1bb77fd821e042d2c8ea9a159c970d20.zip
Fix bug for pattern chaining
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index d8939ed..abc8571 100644
--- a/src/main.c
+++ b/src/main.c
@@ -41,9 +41,9 @@ WITH REGARD TO THIS SOFTWARE.
41// 41//
42// Bugfixes 42// Bugfixes
43// - Sound can get hung up sometimes, but I can't reproduce when this happens. 43// - Sound can get hung up sometimes, but I can't reproduce when this happens.
44// Not sure if this is an emulator thing or happens also in hardware. 44// Not sure if this is an emulator thing or happens also in hardware.
45// - Cursor can stay in position instead of dissapering, again I can't 45// - Cursor can stay in position instead of dissapering, again I can't
46// reproduce this right now, just happened randomly. Needs investigation. 46// reproduce this right now, just happened randomly. Needs investigation.
47// 47//
48 48
49#include "gba/gba.h" 49#include "gba/gba.h"
@@ -112,9 +112,6 @@ main(void) {
112 // Adjust system wait times. 112 // Adjust system wait times.
113 SYSTEM_WAIT = SYSTEM_WAIT_CARTRIDGE; 113 SYSTEM_WAIT = SYSTEM_WAIT_CARTRIDGE;
114 114
115 // Initialize filesystem.
116 fs_init();
117
118 // Initialize renderer. 115 // Initialize renderer.
119 renderer_init(); 116 renderer_init();
120 117