From 493bf0e389397d8ea238fbbc613b76cc8b56cc05 Mon Sep 17 00:00:00 2001 From: superp00t Date: Mon, 4 Dec 2023 17:24:11 -0500 Subject: [PATCH] fix(file): nativepath/nativePath --- bc/file/path/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bc/file/path/Path.cpp b/bc/file/path/Path.cpp index 76f6ece..27154c0 100644 --- a/bc/file/path/Path.cpp +++ b/bc/file/path/Path.cpp @@ -50,7 +50,7 @@ QuickNative::QuickNative(const char* path) { auto resolvedPath = static_cast(Memory::Allocate(resolvedSize)); resolvedPath[resolvedSize-1] = '\0'; - bool wasResolved = ResolvePosixCasePath(nativepath, resolvedPath); + bool wasResolved = ResolvePosixCasePath(nativePath, resolvedPath); if (!wasResolved) { Memory::Free(resolvedPath); return;