diff options
Diffstat (limited to 'ui/curses')
| -rw-r--r-- | ui/curses/ui.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ui/curses/ui.c b/ui/curses/ui.c index 6755619..ce73c01 100644 --- a/ui/curses/ui.c +++ b/ui/curses/ui.c @@ -813,11 +813,6 @@ void tui_print(void) { #if defined(DATA_PUSH_INTERVAL) tui_ulx_field(l++, "dpsi", DATA_PUSH_INTERVAL); #endif -#if defined(COMPRESS) - tui_str_field(l++, "xsav", "enabled"); -#else - tui_str_field(l++, "xsav", "disabled"); -#endif tui_ulx_field(l++, "step", g_steps); tui_ulx_field(l++, "sync", g_syncs); tui_ulx_field(l++, "step", g_step_block); @@ -1237,8 +1232,8 @@ void init(void) { init_pair(PAIR_INFO, COLOR_GREEN, COLOR_BLACK); init_pair(PAIR_WARN, COLOR_RED, COLOR_BLACK); - g_info = tui_info_impl; - g_warn = tui_warn_impl; + log_info = tui_info_impl; + log_warn = tui_warn_impl; #if defined(COMMAND_NEW) salis_init(); |
