mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 05:10:05 +00:00
Replace format specifiers for all usages of ASSERT_MSG
This commit is contained in:
parent
59b8a1dbc2
commit
968569aa61
20 changed files with 53 additions and 53 deletions
|
@ -1281,7 +1281,7 @@ void RasterizerOpenGL::SetShader() {
|
|||
glGetActiveUniformBlockiv(current_shader->shader.handle, block_index,
|
||||
GL_UNIFORM_BLOCK_DATA_SIZE, &block_size);
|
||||
ASSERT_MSG(block_size == sizeof(UniformData),
|
||||
"Uniform block size did not match! Got %d, expected %zu",
|
||||
"Uniform block size did not match! Got {}, expected {}",
|
||||
static_cast<int>(block_size), sizeof(UniformData));
|
||||
glUniformBlockBinding(current_shader->shader.handle, block_index, 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue