From 4397763e72d0b54e9a177af88a31d6866be26192 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 27 Feb 2024 05:52:24 +0200 Subject: [PATCH] Update CreateIfNotExists function signature --- include/filesystem.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/filesystem.hpp b/include/filesystem.hpp index f0e6c961..62b73970 100644 --- a/include/filesystem.hpp +++ b/include/filesystem.hpp @@ -363,7 +363,7 @@ namespace vfs */ RefNode *Open(const char *Path, Node *Parent = nullptr); - Node *CreateIfNotExists(const char *Path, NodeType Type, Node *Parent); + Node *CreateIfNotExists(const char *Path, NodeType Type, Node *Parent = nullptr); Virtual(); ~Virtual();