From b5ca86d8de85f847f1f288615ca02378f2b9de9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sun, 8 Jan 2023 16:48:38 +0100 Subject: [PATCH] Fixed scope of full path --- GlitchyEngine/src/Extension/System/IO/Path.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlitchyEngine/src/Extension/System/IO/Path.bf b/GlitchyEngine/src/Extension/System/IO/Path.bf index 0096e5d..58f6cf8 100644 --- a/GlitchyEngine/src/Extension/System/IO/Path.bf +++ b/GlitchyEngine/src/Extension/System/IO/Path.bf @@ -6,7 +6,7 @@ extension Path { public static mixin GetScopedFullPath(String path) { - String fullPath = scope String(Path.MaxPath); + String fullPath = scope:: String(Path.MaxPath); Path.GetFullPath(path, fullPath); fullPath