Added network configuration dialogue.
This commit is contained in:
parent
6697e31929
commit
961490cca9
10 changed files with 263 additions and 7 deletions
9
src/pc.c
9
src/pc.c
|
|
@ -920,3 +920,12 @@ void saveconfig(char *fn)
|
|||
|
||||
config_save(CFG_GLOBAL, global_config_file);
|
||||
}
|
||||
|
||||
void saveconfig_global_only()
|
||||
{
|
||||
char global_config_file[512];
|
||||
|
||||
append_filename(global_config_file, pcem_path, "pcem.cfg", 511);
|
||||
|
||||
config_save(CFG_GLOBAL, global_config_file);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue