File tree Expand file tree Collapse file tree
OSVR-Unity/Assets/OSVRUnity/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public static void fix()
4949 private DLLSearchPathFixer ( )
5050 {
5151 var currentPath = Environment . GetEnvironmentVariable ( "PATH" , EnvironmentVariableTarget . Process ) ;
52- Debug . Log ( String . Format ( "Old PATH: {0}" , currentPath ) ) ;
52+ // Debug.Log(String.Format("Old PATH: {0}", currentPath));
5353 OrigDirs = new List < string > ( currentPath . Split ( Path . PathSeparator ) ) ;
5454 UnityDataDir = Application . dataPath ;
5555 UnityDataDirBackslashed = Application . dataPath . Replace ( "/" , "\\ " ) ;
@@ -65,7 +65,7 @@ private void ApplyChanges()
6565 allDirs . AddRange ( OrigDirs ) ;
6666
6767 var newPathString = String . Join ( Path . PathSeparator . ToString ( ) , allDirs . ToArray ( ) ) ;
68- Debug . Log ( String . Format ( "New PATH: {0}" , newPathString ) ) ;
68+ // Debug.Log(String.Format("New PATH: {0}", newPathString));
6969 Environment . SetEnvironmentVariable ( "PATH" , newPathString , EnvironmentVariableTarget . Process ) ;
7070 }
7171
You can’t perform that action at this time.
0 commit comments