ui_save.c: Fix spelling of 'exists.'

This commit is contained in:
Sean Bright 2022-12-09 16:33:13 -05:00 committed by Kaian
parent b537a94d02
commit b32c2b406d
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ save_to_file(ui_t *ui)
sprintf(fullfile, "%s%s", savepath, savefile); sprintf(fullfile, "%s%s", savepath, savefile);
if (access(fullfile, R_OK) == 0) { if (access(fullfile, R_OK) == 0) {
if (dialog_confirm("Overwrite confirmation", "Selected file already exits.\n Do you want to overwrite it?", "Yes,No") != 0) if (dialog_confirm("Overwrite confirmation", "Selected file already exists.\n Do you want to overwrite it?", "Yes,No") != 0)
return 1; return 1;
} }