|
|
| version 1.1.1.1, 2003/10/16 17:59:40 | version 1.2, 2003/10/24 20:46:13 |
|---|---|
| Line 6 | Line 6 |
| #include "fddfile.h" | #include "fddfile.h" |
| #include "diskdrv.h" | #include "diskdrv.h" |
| #include "newdisk.h" | #include "newdisk.h" |
| #include "font.h" | |
| #include "iocore.h" | |
| void AboutDialogProc(void) { | void AboutDialogProc(void) { |
| Line 176 void dialog_changehdd(BYTE drv) { | Line 177 void dialog_changehdd(BYTE drv) { |
| } | } |
| } | } |
| void dialog_font(void) { | |
| char name[1024]; | |
| if (dialog_fileselect(name, 1024)) { | |
| if ((name != NULL) && (font_load(name, FALSE))) { | |
| gdcs.textdisp |= GDCSCRN_ALLDRAW2; | |
| milstr_ncpy(np2cfg.fontfile, name, sizeof(np2cfg.fontfile)); | |
| sysmng_update(SYS_UPDATECFG); | |
| } | |
| } | |
| } |