From 02d469948e8f67538c07f4ae1b088722c1538b41 Mon Sep 17 00:00:00 2001 From: nova Date: Mon, 3 Mar 2025 15:45:26 +0100 Subject: [PATCH] refractoring --- main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index c2174a4..b2f81f4 100644 --- a/main.c +++ b/main.c @@ -10,7 +10,8 @@ unsigned int terminal_height; unsigned int terminal_width; unsigned int temp_heigth = 0; //used for screen refresh unsigned int temp_width = 0; -unsigned int settings ; +unsigned int settings; +unsigned int file_modifiers; unsigned int status; //bit 0 = enable char **content_l; //content of parent dir, used in left window char **content_m; //content of current dir, used in main window @@ -27,7 +28,7 @@ int main() { WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3)); WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0); WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2)); - settings ^= SETTINGS_HIDDEN_FILES; + file_modifiers ^= FILE_MODIFIERS_HIDDEN_FILES; status ^= STATUS_RUN_BACKEND; char input = 0; @@ -67,7 +68,7 @@ int main() { if ((input = getch())) { - user_interactions(&input, &status, &settings); + user_interactions(&input, &status, &settings, &file_modifiers); } } free(content_l);