Skip to content

Commit

Permalink
Missed an increment...
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Oct 15, 2020
1 parent 274c8a2 commit 385d4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojoshader_d3d11.c
Expand Up @@ -217,7 +217,7 @@ static void update_uniform_buffer(MOJOSHADER_d3d11Shader *shader)
needsUpdate = 1;
vecDst[j * 4] = regB[idx + j];
} // if
} while (j < arrayCount);
} while (++j < arrayCount);

offset += size;
continue; // Skip the rest, do NOT break!
Expand Down

0 comments on commit 385d4d8

Please sign in to comment.