From 4959741a7eaac3b429912a1ccfd7ebe06d41ef0d Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sun, 23 Apr 2023 20:45:37 +0200 Subject: Add back cursor drawing --- src/globals.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/globals.c') diff --git a/src/globals.c b/src/globals.c index bf0c5b6..e718dd4 100644 --- a/src/globals.c +++ b/src/globals.c @@ -9,9 +9,13 @@ int channel_selection_loc = 0; int pattern_selection_loc = 0; int right_col_selection_loc = 0; int play_status = 0; -static int current_pattern = 0; -static int next_pattern = 0; -static int current_bank = 0; +int current_pattern = 0; +int next_pattern = 0; +int current_bank = 0; +u32 last_trig_loc = 0; +u32 last_channel_loc = 0; +u32 last_pattern_loc = 0; +u32 last_right_col_loc = 0; // // Color indexes. -- cgit v1.2.1