Skip to content

Commit

Permalink
FIXED: MDL v44, v45, v46, v47, v48, v49 - Mesh SMD files are written …
Browse files Browse the repository at this point in the history
…incorrectly, due to incorrect change in Crowbar 0.66.
  • Loading branch information
ZeqMacaw committed Jan 29, 2020
1 parent b381bf6 commit 2f49040
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Public Class SourceVvdFile04
aStudioVertex.normalZ = Me.theInputFileReader.ReadSingle()
aStudioVertex.texCoordX = Me.theInputFileReader.ReadSingle()
aStudioVertex.texCoordY = Me.theInputFileReader.ReadSingle()
If mdlVersion >= 54 OrElse mdlVersion <= 59 Then
If mdlVersion >= 54 AndAlso mdlVersion <= 59 Then
Me.theInputFileReader.ReadSingle()
Me.theInputFileReader.ReadSingle()
Me.theInputFileReader.ReadSingle()
Expand Down

0 comments on commit 2f49040

Please sign in to comment.