Fix typo for error message when trying to load a project file that does not exist.

This commit is contained in:
Jake Young
2025-01-03 17:31:21 -05:00
parent 0f847335c3
commit 22914dc232

View File

@@ -550,7 +550,7 @@ int32 Editor::LoadProduct()
}
if (!FileSystem::FileExists(files[0]))
{
Platform::Fatal(TEXT("Cannot opoen selected project file because it doesn't exist."));
Platform::Fatal(TEXT("Cannot open selected project file because it doesn't exist."));
return -1;
}
projectPath = StringUtils::GetDirectoryName(files[0]);