Write content to files in Z80 as some systems ignore empty files.

This commit is contained in:
2021-05-25 21:54:05 +01:00
parent 1a93db2554
commit 9c426f63c4

View File

@@ -51,6 +51,8 @@ void MillionFiles(const char* path)
h = fopen(filename, "w");
if(h == NULL) break;
// Needed or some systems do not create empty files at all.
fprintf(h, "%s\n", filename);
fclose(h);
}