Skip to content
Snippets Groups Projects
Commit e9b5e2ef authored by deuce's avatar deuce
Browse files

Fix filename casing issue.

parent bd2b21f4
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ backgame(void)
struct date d;
int thp;
getdate(&d);
sprintf(backname, "smurf.S%02.2d", d.da_day);
sprintf(backname, "smurf.s%02.2d", d.da_day);
stream = fopen(backname, "w+");
fprintf(stream, "%03i", noplayers);
for (cyc = 0; cyc < noplayers; cyc++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment