diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-06-01 10:02:07 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-06-01 10:02:07 +0200 |
commit | 35cdecc0134b82d69b120533b091b8e5b58415e1 (patch) | |
tree | 6a66f2995f787a109224e3daf8b19ecbbfb3c03b /client/ui.h | |
parent | 139651d45a72d57c5147e2854647d95cb87c9e4e (diff) |
direct control toy working
Diffstat (limited to 'client/ui.h')
-rw-r--r-- | client/ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/ui.h b/client/ui.h index f749fa0..0d375de 100644 --- a/client/ui.h +++ b/client/ui.h @@ -8,7 +8,7 @@ extern WINDOW *g_w2_ui_win; extern unsigned int g_w2_ui_width; extern unsigned int g_w2_ui_height; -extern void (*g_w2_ui_current_tab)(); +extern void (*g_w2_ui_current_tab)(bool first); /** update terminal props */ void w2_ui_update(); @@ -24,4 +24,4 @@ void w2_ui_paint_statusbar(); /** draw tab bar */ void w2_ui_paint_tabbar(); -void w2_ui_dirc(); +void w2_ui_dirc(bool first); |