diff arogue5/options.c @ 279:d3968e9cb98d

Use C stdio functions for score files and save files. Switching from Unix file descriptor operations to C standard FILE* functions will reduce portability problems.
author John "Elwin" Edwards
date Fri, 15 Sep 2017 19:57:54 -0400
parents e940e6c00751
children e52a8a7ad4c5
line wrap: on
line diff
--- a/arogue5/options.c	Sun Sep 10 17:30:13 2017 -0400
+++ b/arogue5/options.c	Fri Sep 15 19:57:54 2017 -0400
@@ -103,7 +103,7 @@
         return status;
     if (strcmp(old_score_file, optstr))
     {
-        md_reopen_score();
+        reopen_score();
     }
     return status;
 }