From d8ec2b134d94f8c109e30905701d12c593a1cd57 Mon Sep 17 00:00:00 2001 From: Sai Nane Date: Thu, 28 Nov 2024 14:07:56 +0000 Subject: [PATCH] Update file_access.h location `os/file_access.h` moved to `io/file_access.h` in 9e328bb5b: https://github.com/godotengine/godot/commit/9e328bb5b --- .../core_and_modules/custom_resource_format_loaders.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/development/core_and_modules/custom_resource_format_loaders.rst b/contributing/development/core_and_modules/custom_resource_format_loaders.rst index add1a045ad7..4a40cf05688 100644 --- a/contributing/development/core_and_modules/custom_resource_format_loaders.rst +++ b/contributing/development/core_and_modules/custom_resource_format_loaders.rst @@ -263,7 +263,7 @@ calls into ``std::istream``. .. code-block:: cpp - #include "core/os/file_access.h" + #include "core/io/file_access.h" #include #include @@ -298,7 +298,7 @@ References - `istream `_ - `streambuf `_ -- `core/io/file_access.h `_ +- `core/io/file_access.h `_ Registering the new file format -------------------------------