Skip to content
Snippets Groups Projects
Commit 5af5c086 authored by Albert Gräf's avatar Albert Gräf
Browse files

Windows compatibility.

parent b8eced48
No related branches found
No related tags found
No related merge requests found
......@@ -646,8 +646,10 @@ char *sys_recent_files[MAX_RECENT_FILES];
static int fexists(const char *s)
{
struct stat statbuf;
return stat(s, &statbuf) == 0;
FILE *fp = sys_fopen(s, "r");
if (!fp) return 0;
sys_fclose(fp);
return 1;
}
void sys_add_recent_file(const char *s)
......
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