File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -948,12 +948,12 @@ End Function
948948
949949'Helper function to construct correctly formatted filename
950950Function GetSnkFilename(srcFilename As String, type As String) As String
951- Dim currentFE As String = GetFileNameExtension(srcFilename)
951+ Dim currentFileExtension As String = GetFileNameExtension(srcFilename)
952952
953- If SnkIsNative And (GetExtension(type) = currentFE ) and currentFE <> "" Then 'Cut off file extension, if present
953+ If SnkIsNative And (GetExtension(type) = currentFileExtension ) and currentFileExtension <> "" Then 'Cut off file extension, if present
954954 srcFilename = RemoveFileExtension(srcFilename)
955955
956- ElseIf Not SnkIsNative And currentFE = "" Then 'Add file extension, if not present
956+ ElseIf Not SnkIsNative And currentFileExtension = "" Then 'Add file extension, if not present
957957 srcFilename = srcFilename + GetExtension(type)
958958 End If
959959
You can’t perform that action at this time.
0 commit comments