--- lbbs/src/menu_proc.c 2025/04/28 03:31:00 1.6 +++ lbbs/src/menu_proc.c 2025/05/02 03:34:58 1.8 @@ -18,7 +18,9 @@ #include "bbs.h" #include "bbs_cmd.h" #include "common.h" +#include "log.h" #include "io.h" +#include "screen.h" #include #include #include @@ -84,7 +86,7 @@ int license(const char *s) strcpy(temp, app_home_dir); strcat(temp, "data/license.txt"); - display_file_ex(temp, 0, 1); + display_file_ex(temp, 1, 1); return REDRAW; } @@ -95,7 +97,7 @@ int copyright(const char *s) strcpy(temp, app_home_dir); strcat(temp, "data/copyright.txt"); - display_file_ex(temp, 0, 1); + display_file_ex(temp, 1, 1); return REDRAW; }