From 3489cc51fb35734306a4c42f7185b57e932bcc38 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 9066fbdb6..fd78c193b 100644 --- a/contributing/development/core_and_modules/custom_resource_format_loaders.rst +++ b/contributing/development/core_and_modules/custom_resource_format_loaders.rst @@ -269,7 +269,7 @@ calls into ``std::istream``. .. code-block:: cpp - #include "core/os/file_access.h" + #include "core/io/file_access.h" #include #include @@ -304,7 +304,7 @@ References - `istream `_ - `streambuf `_ -- `core/io/file_access.h `_ +- `core/io/file_access.h `_ Registering the new file format -------------------------------