Diff for /np2/macosx/fdefine.cpp between versions 1.8 and 1.9

version 1.8, 2004/01/23 17:37:39 version 1.9, 2004/01/31 19:45:25
Line 82  static int Getfiletype(FInfo *fndrinfo)  Line 82  static int Getfiletype(FInfo *fndrinfo) 
                 case '.HDI':                  case '.HDI':
                         return(FTYPE_HDI);                          return(FTYPE_HDI);
                         
                   case '.NHD':
                           return(FTYPE_NHD);
              
                   case '.HDD':
                           return(FTYPE_HDD);
              
                   case '.FDI':
                           return(FTYPE_FDI);
              
                 case 'BMP ':                  case 'BMP ':
                         return(FTYPE_BMP);                          return(FTYPE_BMP);
         }          }
Line 108  static int GetFileExt(char* filename) {  Line 117  static int GetFileExt(char* filename) { 
     else if ((!milstr_cmp(p, str_thd))) {      else if ((!milstr_cmp(p, str_thd))) {
                         ftype = FTYPE_THD;                          ftype = FTYPE_THD;
                 }                  }
       else if ((!milstr_cmp(p, str_nhd))) {
                           ftype = FTYPE_NHD;
                   }
     else if ((!milstr_cmp(p, str_hdi))) {      else if ((!milstr_cmp(p, str_hdi))) {
                         ftype = FTYPE_HDI;                          ftype = FTYPE_HDI;
                 }                  }
     else if ((!milstr_cmp(p, str_hdd))) {      else if ((!milstr_cmp(p, str_hdd))) {
                         ftype = FTYPE_HDD;                          ftype = FTYPE_HDD;
                 }                  }
       else if ((!milstr_cmp(p, str_fdi))) {
                           ftype = FTYPE_FDI;
                   }
     else if ((!milstr_cmp(p, "xdf")) || (!milstr_cmp(p, "dup")) || (!milstr_cmp(p, "hdm"))) {      else if ((!milstr_cmp(p, "xdf")) || (!milstr_cmp(p, "dup")) || (!milstr_cmp(p, "hdm"))) {
         ftype = FTYPE_BETA;          ftype = FTYPE_BETA;
     }      }

Removed from v.1.8  
changed lines
  Added in v.1.9


RetroPC.NET-CVS <cvs@retropc.net>