fix(file): nativepath/nativePath

This commit is contained in:
phaneron 2023-12-04 17:24:11 -05:00
parent 50881662ae
commit 493bf0e389

View file

@ -50,7 +50,7 @@ QuickNative::QuickNative(const char* path) {
auto resolvedPath = static_cast<char*>(Memory::Allocate(resolvedSize)); auto resolvedPath = static_cast<char*>(Memory::Allocate(resolvedSize));
resolvedPath[resolvedSize-1] = '\0'; resolvedPath[resolvedSize-1] = '\0';
bool wasResolved = ResolvePosixCasePath(nativepath, resolvedPath); bool wasResolved = ResolvePosixCasePath(nativePath, resolvedPath);
if (!wasResolved) { if (!wasResolved) {
Memory::Free(resolvedPath); Memory::Free(resolvedPath);
return; return;