Skip to content

Commit

Permalink
Replace incorrect uint32_t with correct int vars (#2235)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoddicus authored May 21, 2020
1 parent a0cce73 commit eba1389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glslang/MachineIndependent/reflection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ class TReflectionTraverser : public TIntermTraverser {
if (processedDerefs.find(&base) == processedDerefs.end()) {
processedDerefs.insert(&base);

uint32_t blockIndex = -1;
uint32_t offset = -1;
int blockIndex = -1;
int offset = -1;
TList<TIntermBinary*> derefs;
TString baseName = base.getName();

Expand Down

0 comments on commit eba1389

Please sign in to comment.