--- np2/macosx/ini.cpp 2003/11/05 17:58:01 1.5 +++ np2/macosx/ini.cpp 2003/12/02 11:09:07 1.10 @@ -106,7 +106,7 @@ const INITBL *p; break; case INITYPE_ARGS16: - milstr_ncpy(work, data, 512); + milstr_ncpy(work, data, sizeof(work)); inirdargs16(work, p); break; @@ -332,6 +332,13 @@ static const char ini_title[] = "NekoPro static const char inifile[] = "np2.cfg"; static const INITBL iniitem[] = { + {"np2title", INITYPE_STR, np2oscfg.titles, + sizeof(np2oscfg.titles)}, + {"WindposX", INITYPE_SINT32, &np2oscfg.winx, 0}, + {"WindposY", INITYPE_SINT32, &np2oscfg.winy, 0}, + + {"pc_model", INITYPE_STR, &np2cfg.model, + sizeof(np2cfg.model)}, {"clk_base", INITYPE_SINT32, &np2cfg.baseclock, 0}, {"clk_mult", INITYPE_SINT32, &np2cfg.multiple, 0}, @@ -397,6 +404,7 @@ static const INITBL iniitem[] = { {"Mouse_sw", INITYPE_BOOL, &np2oscfg.MOUSE_SW, 0}, {"comfirm_", INITYPE_BOOL, &np2oscfg.comfirm, 0}, {"e_resume", INITYPE_BOOL, &np2oscfg.resume, 0}, // ver0.30 + {"toolwind", INITYPE_BOOL, &np2oscfg.toolwin, 0}, // ver0.38 {"I286SAVE", INITYPE_BOOL, &np2oscfg.I286SAVE, 0}}; #define INIITEMS (sizeof(iniitem) / sizeof(INITBL))