aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 28e5e6b..aa559c7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -17,7 +17,7 @@ WITH REGARD TO THIS SOFTWARE.
17// + Change cursor behaviour for new parameter pages 17// + Change cursor behaviour for new parameter pages
18// + Allow prob control (% based or 1:2, etc.) 18// + Allow prob control (% based or 1:2, etc.)
19// + Display notification when editing a parameter with the highest priority 19// + Display notification when editing a parameter with the highest priority
20// - Add panning support. 20// + Add panning support.
21// - Add custom user themes 21// - Add custom user themes
22// - Animations for cursor movement/current step highlight. (A fade out maybe?) 22// - Animations for cursor movement/current step highlight. (A fade out maybe?)
23// 23//
@@ -132,6 +132,8 @@ render(void) {
132 render_sequencer(); 132 render_sequencer();
133 } break; 133 } break;
134 } 134 }
135 // DEBUG: Ensuring the saved data don't exceed SRAM size (32k).
136 // txt_drawf("SIZE: %lu", 0, 0, COL_ACC_1, sizeof(Metadata) + sizeof(patterns) * 4 + sizeof(chain) * 4);
135} 137}
136 138
137void 139void