]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
Varios bugfixes, mejoras de funcionalidad y validaciones.
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index f859cd6bc11760ab18641498632a823d2680169f..f2d2c22375ecf9380a9f58d99cfec560a00d97e7 100644 (file)
@@ -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);
                }
        }