Diff for /np2/macos9/ini.cpp between versions 1.2 and 1.3

version 1.2, 2003/10/23 15:57:16 version 1.3, 2003/11/06 01:58:36
Line 207  const INITBL *pterm; Line 207  const INITBL *pterm;
         }          }
         milstr_ncpy(work, "[", sizeof(work));          milstr_ncpy(work, "[", sizeof(work));
         milstr_ncat(work, title, sizeof(work));          milstr_ncat(work, title, sizeof(work));
         milstr_ncat(work, "]\r\n", sizeof(work));          milstr_ncat(work, "]\r", sizeof(work));
         file_write(fh, work, strlen(work));          file_write(fh, work, strlen(work));
   
         p = tbl;          p = tbl;
Line 273  const INITBL *pterm; Line 273  const INITBL *pterm;
                         file_write(fh, p->item, strlen(p->item));                          file_write(fh, p->item, strlen(p->item));
                         file_write(fh, " = ", 3);                          file_write(fh, " = ", 3);
                         file_write(fh, work, strlen(work));                          file_write(fh, work, strlen(work));
                         file_write(fh, "\r\n", 2);                          file_write(fh, "\r", 1);
                 }                  }
                 p++;                  p++;
         }          }
Line 362  void initload(void) { Line 362  void initload(void) {
   
         char    path[MAX_PATH];          char    path[MAX_PATH];
   
         milstr_ncpy(path, file_getcd(inifile), sizeof(path));          file_cpyname(path, file_getcd(inifile), sizeof(path));
         ini_read(path, ini_title, iniitem, INIITEMS);          ini_read(path, ini_title, iniitem, INIITEMS);
 }  }
   
Line 370  void initsave(void) { Line 370  void initsave(void) {
   
         char    path[MAX_PATH];          char    path[MAX_PATH];
   
         milstr_ncpy(path, file_getcd(inifile), sizeof(path));          file_cpyname(path, file_getcd(inifile), sizeof(path));
         ini_write(path, ini_title, iniitem, INIITEMS);          ini_write(path, ini_title, iniitem, INIITEMS);
 }  }
   

Removed from v.1.2  
changed lines
  Added in v.1.3


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