X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7ecd7945872be34959b8d0333761f8c33d99e496..b6adfac6abe59eaf6165396982e4ab447e48b62b:/emufs_gui/emufs_view.c diff --git a/emufs_gui/emufs_view.c b/emufs_gui/emufs_view.c index f859cd6..f2d2c22 100644 --- a/emufs_gui/emufs_view.c +++ b/emufs_gui/emufs_view.c @@ -59,8 +59,8 @@ void print_help(char *s) int leer_tipo_arbol(char *s) { if (strcmp(s, "B") == 0) return 0; - if (strcmp(s, "B*") == 0) return 1; - if (strcmp(s, "B+") == 0) return 2; + if (strcmp(s, "BA") == 0) return 1; + if (strcmp(s, "BP") == 0) return 2; /* Por defecto es un B */ return 0; @@ -508,7 +508,7 @@ int main_menu() h = LINES-2; w = COLS-2; win = newwin(h, w, 1, 1); - emufs_indice_b_ver(art_get_lst()->fp->indices, win, w, h, 0); + emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0); delwin(win); } }