A .txt file is easier for the end user.

This commit is contained in:
warwick
2003-09-11 04:19:02 +00:00
parent 4c2486026e
commit 1fc1945222

View File

@@ -1554,6 +1554,9 @@ const char *filename;
Sprintf(tmp_config, "%s/%s", envp, "Library/Preferences/NetHack Defaults");
if ((fp = fopenp(tmp_config, "r")) != (FILE *)0)
return(fp);
Sprintf(tmp_config, "%s/%s", envp, "Library/Preferences/NetHack Defaults.txt");
if ((fp = fopenp(tmp_config, "r")) != (FILE *)0)
return(fp);
}
# endif
if (errno != ENOENT) {