UltraRogue: add the -n option.

This commit is contained in:
John "Elwin" Edwards 2017-02-09 16:29:45 -05:00
parent ed27d7a24f
commit 403d9ec171
4 changed files with 35 additions and 6 deletions

View file

@ -90,6 +90,8 @@ restore(char *file)
if ((infd = fopen(file, "r")) == NULL)
{
if (use_savedir && errno == ENOENT)
return TRUE;
perror(file);
return(FALSE);
}