]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/emufs.c
Bugfix en Tipo3, puto puto puto
[z.facultad/75.06/emufs.git] / emufs / emufs.c
index d79f55954b2767dc7fbd3a1b3d3bee8e582aea3a..9f7917cfd52bedcf359325a09944875325ec7746 100644 (file)
@@ -257,7 +257,7 @@ EMUFS *emufs_abrir(const char *filename)
        fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
 
        /* Si no es un tipo conocido, sale. */
-       if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
+       if ((tipo != T1) && (tipo != T2) && (tipo != T3) && (tipo != T4) && (tipo != T5)) {
                fclose(fp);
                return NULL;
        }