1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

FileAccessWindows: Add errno include for MinGW

Apparently MSVC is happy with ENOENT without it, but MinGW seems to
require it.
Follow-up to #31499.
This commit is contained in:
Rémi Verschelde
2019-08-21 10:52:54 +02:00
parent 51def4dab9
commit e797ae4704

View File

@@ -38,6 +38,7 @@
#include <shlwapi.h>
#include <windows.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <tchar.h>