Mercurial > hg > early-roguelike
diff arogue5/save.c @ 198:7795b0938921
Advanced Rogue 5: replace calls to unlink() with md_unlink().
author | John "Elwin" Edwards |
---|---|
date | Tue, 11 Aug 2015 16:12:09 -0400 |
parents | d852b8f088c5 |
children | efdbeec0816d |
line wrap: on
line diff
--- a/arogue5/save.c Tue Aug 11 15:29:31 2015 -0400 +++ b/arogue5/save.c Tue Aug 11 16:12:09 2015 -0400 @@ -91,7 +91,7 @@ */ if (save_file(savef) != 0) { msg("Cannot create save file."); - unlink(file_name); + md_unlink(file_name); return(FALSE); } else return(TRUE); @@ -235,9 +235,9 @@ if (!wizard) { - if (unlink(file) < 0) { + if (md_unlink(file) < 0) { close(inf); /* only close if system insists */ - if (unlink(file) < 0) { + if (md_unlink(file) < 0) { endwin(); printf("\nCannot unlink file\n"); return FALSE;