diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-11 16:51:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 16:51:10 +0200 |
commit | 8d4046929c05a865247caa5bb6958a75c45cf293 (patch) | |
tree | f110eb7af684ca92b3889d672ac2916d2fdfdf37 /drivers/windows | |
parent | 6b0183ec893ddea3f8ae71005b5fce1ae988e8a0 (diff) | |
parent | 9e328bb5b7bfb30b832e9ef733e535de93e1c60b (diff) |
Merge pull request #49511 from akien-mga/core-diraccess-fileaccess-io
Core: Move DirAccess and FileAccess to `core/io`
Diffstat (limited to 'drivers/windows')
-rw-r--r-- | drivers/windows/dir_access_windows.h | 2 | ||||
-rw-r--r-- | drivers/windows/file_access_windows.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/windows/dir_access_windows.h b/drivers/windows/dir_access_windows.h index b151b631e9..1ba4e70e42 100644 --- a/drivers/windows/dir_access_windows.h +++ b/drivers/windows/dir_access_windows.h @@ -33,7 +33,7 @@ #ifdef WINDOWS_ENABLED -#include "core/os/dir_access.h" +#include "core/io/dir_access.h" /** @author Juan Linietsky <reduz@gmail.com> diff --git a/drivers/windows/file_access_windows.h b/drivers/windows/file_access_windows.h index 95f3a75548..7280fc3237 100644 --- a/drivers/windows/file_access_windows.h +++ b/drivers/windows/file_access_windows.h @@ -33,7 +33,7 @@ #ifdef WINDOWS_ENABLED -#include "core/os/file_access.h" +#include "core/io/file_access.h" #include "core/os/memory.h" #include <stdio.h> |