aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2023-07-12 19:34:25 +0200
committerBad Diode <bd@badd10de.dev>2023-07-12 19:34:25 +0200
commit8fa42f9f9107f460b49fa7ab171529942e66e7ea (patch)
tree3965abb20cfcf43173841543e115cfb1f550450c /src/main.c
parent20b1b448b7a1c8e22cb2e0f2d6294533f7a220af (diff)
downloadstepper-8fa42f9f9107f460b49fa7ab171529942e66e7ea.tar.gz
stepper-8fa42f9f9107f460b49fa7ab171529942e66e7ea.zip
Add optional help prompt to the notif bar
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 2e78b3c..54d46e6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -115,6 +115,7 @@ render_settings(void) {
115 txt_printf(" SYNC: %s\n\n", sync_setting_str[settings.sync]); 115 txt_printf(" SYNC: %s\n\n", sync_setting_str[settings.sync]);
116 txt_printf(" THEME: %s\n\n", theme_setting_str[settings.theme]); 116 txt_printf(" THEME: %s\n\n", theme_setting_str[settings.theme]);
117 txt_printf(" CURSOR: %s\n\n", cursor_setting_str[settings.cursor]); 117 txt_printf(" CURSOR: %s\n\n", cursor_setting_str[settings.cursor]);
118 txt_printf(" HELP: %s\n\n", help_setting_str[settings.help]);
118 txt_render(); 119 txt_render();
119 txt_clear(); 120 txt_clear();
120 PROF(draw_settings_cursor(), draw_cursor_cycles); 121 PROF(draw_settings_cursor(), draw_cursor_cycles);