Skip to content

Commit

Permalink
Fix assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcourteaux committed Jan 28, 2025
1 parent 9759713 commit 93bd8c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer_gl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4426,7 +4426,7 @@ namespace bgfx { namespace gl
uint16_t num;
uint16_t copy;
UniformBuffer::decodeOpcode(opcode, type, typeBits, ignore, num, copy);
BX_ASSERT(typeBits == 0);
BX_ASSERT(typeBits == 0, "OpenGL never uses typeBits for uniforms.");

const char* data;
if (copy)
Expand Down

0 comments on commit 93bd8c6

Please sign in to comment.