Skip to content

Commit 79a577f

Browse files
authored
Merge pull request #501 from Unity-Technologies/UT1847/dont-look-in-D-drive
Don't look for programs in the D drive, only the C
2 parents c250e6b + 225a2a1 commit 79a577f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.unity.formats.fbx/Editor/FbxExportSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ private static HashSet<string> GetDefaultVendorLocations()
386386
{
387387
if (Application.platform == RuntimePlatform.WindowsEditor)
388388
{
389-
HashSet<string> windowsDefaults = new HashSet<string>() { "C:/Program Files/Autodesk", "D:/Program Files/Autodesk" };
389+
HashSet<string> windowsDefaults = new HashSet<string>() { "C:/Program Files/Autodesk" };
390390
HashSet<string> existingDirectories = new HashSet<string>();
391391
foreach (string path in windowsDefaults)
392392
{

0 commit comments

Comments
 (0)