aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index fe3dba0..0efcc73 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,6 +14,8 @@ WITH REGARD TO THIS SOFTWARE.
14// UI tweaks. 14// UI tweaks.
15// - Add custom user themes 15// - Add custom user themes
16// - Animations for cursor movement/current step highlight. (A fade out maybe?) 16// - Animations for cursor movement/current step highlight. (A fade out maybe?)
17// - Should the channel parameters reset after leaving them? Is it more or
18// less confusing this way?
17// 19//
18// Quality of life improvements. 20// Quality of life improvements.
19// - When not on play mode, adjusting a note or a parameter triggers the sound. 21// - When not on play mode, adjusting a note or a parameter triggers the sound.
@@ -66,6 +68,11 @@ WITH REGARD TO THIS SOFTWARE.
66// - Add CREDITS to the documentation for now, should probably be a menu item 68// - Add CREDITS to the documentation for now, should probably be a menu item
67// later. 69// later.
68// 70//
71// Bug notes (catbeat):
72//
73// + Bug: GUI scale disappeared
74// + Bug: cut and pasted note on noise voice and showed parameter paste but
75// not note, had to push B again for note
69 76
70#include "gba/gba.h" 77#include "gba/gba.h"
71 78
@@ -186,6 +193,7 @@ update(void) {
186 redraw_play_pause = true; 193 redraw_play_pause = true;
187 redraw_piano_note = true; 194 redraw_piano_note = true;
188 redraw_params = true; 195 redraw_params = true;
196 redraw_scale = true;
189 } 197 }
190 last_trig_loc = trig_selection_loc; 198 last_trig_loc = trig_selection_loc;
191 last_channel_loc = channel_selection_loc; 199 last_channel_loc = channel_selection_loc;