Skip to content

Commit

Permalink
Merge pull request #2141 from courtney-g/bug_2140
Browse files Browse the repository at this point in the history
Fix MSVC build issue - remove invalid character
  • Loading branch information
johnkslang authored Mar 20, 2020
2 parents 3bf1dab + d42c6ab commit 9659831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glslang/MachineIndependent/parseConst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void TConstTraverser::visitConstantUnion(TIntermConstantUnion* node)
if (nodeComps == 1) {
// If there is a single scalar parameter to a matrix
// constructor, it is used to initialize all the
// components on the matrixs diagonal, with the
// components on the matrix's diagonal, with the
// remaining components initialized to 0.0.
if (i == startIndex || (i - startIndex) % (matrixRows + 1) == 0 )
leftUnionArray[i] = rightUnionArray[count];
Expand Down

0 comments on commit 9659831

Please sign in to comment.