|
Lines 4478-4490
static void setup_menu_paths(void)
|
Link Here
|
|---|
|
strnfmt(buf, 64, "/Terms/%s", angband_term_name[i]); | strnfmt(buf, 64, "/Terms/%s", angband_term_name[i]); |
| |
/* XXX XXX Store it in the menu definition */ | /* XXX XXX Store it in the menu definition */ |
(cptr)term_entry[i].path = string_make(buf); |
term_entry[i].path = string_make(buf); |
| |
/* XXX XXX Build the real path name to the entry */ | /* XXX XXX Build the real path name to the entry */ |
strnfmt(buf, 64, "/Options/Font/%s", angband_term_name[i]); | strnfmt(buf, 64, "/Options/Font/%s", angband_term_name[i]); |
| |
/* XXX XXX Store it in the menu definition */ | /* XXX XXX Store it in the menu definition */ |
(cptr)font_entry[i].path = string_make(buf); |
font_entry[i].path = string_make(buf); |
} | } |
} | } |
| |