Index: ar_extern/dlg_extroute.c =================================================================== --- ar_extern/dlg_extroute.c (revision 36975) +++ ar_extern/dlg_extroute.c (revision 36976) @@ -196,7 +196,7 @@ fname = rnd_hid_fileselect(rnd_gui, "Save autoroute settings to...", "Pick a file for saving autoroute settings to.\n", - "autoroute.cfg.lht", ".lht", NULL, "ar_extern", RND_HID_FSD_MAY_NOT_EXIST, NULL); + "autoroute.cfg.lht", ".lht", NULL, "ar_extern", 0, NULL); if (fname == NULL) return; Index: dialogs/dlg_loadsave.c =================================================================== --- dialogs/dlg_loadsave.c (revision 36975) +++ dialogs/dlg_loadsave.c (revision 36976) @@ -569,7 +569,7 @@ timer_ctx.ptr = &save; save.timer_active = 1; save.timer = rnd_gui->add_timer(rnd_gui, save_timer, 300, timer_ctx); /* the timer needs to run at least once, to get some initialization done that can be done only after fmtsub got created */ - final_name = rnd_hid_fileselect(rnd_gui, prompt, NULL, name_in, NULL, NULL, "board", RND_HID_FSD_MAY_NOT_EXIST, fmtsub); + final_name = rnd_hid_fileselect(rnd_gui, prompt, NULL, name_in, NULL, NULL, "board", 0, fmtsub); if (save.timer_active) rnd_gui->stop_timer(rnd_gui, save.timer); free(name_in); Index: export_openems/mesh.c =================================================================== --- export_openems/mesh.c (revision 36975) +++ export_openems/mesh.c (revision 36976) @@ -991,7 +991,7 @@ fname = rnd_hid_fileselect(rnd_gui, "Save mesh settings...", "Picks file for saving mesh settings.\n", - default_file, ".lht", NULL, "mesh", RND_HID_FSD_MAY_NOT_EXIST, NULL); + default_file, ".lht", NULL, "mesh", 0, NULL); if (fname == NULL) return; /* cancel */ Index: import_sch2/import_sch_dlg.c =================================================================== --- import_sch2/import_sch_dlg.c (revision 36975) +++ import_sch2/import_sch_dlg.c (revision 36976) @@ -257,7 +257,7 @@ if (*cwd == '\0') rnd_get_wd(cwd); - name = rnd_hid_fileselect(rnd_gui, "Import schematics", "Import netlist and footprints from schematics", cwd, NULL, NULL, "schematics", RND_HID_FSD_MAY_NOT_EXIST, NULL); + name = rnd_hid_fileselect(rnd_gui, "Import schematics", "Import netlist and footprints from schematics", cwd, NULL, NULL, "schematics", 0, NULL); if (name == NULL) return;