We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352456e commit d3a1a9cCopy full SHA for d3a1a9c
src/platform/opengl/gles2.c
@@ -1100,7 +1100,7 @@ bool mGLES2ShaderLoad(struct VideoShader* shader, struct VDir* dir) {
1100
struct mGLES2Shader* shaderBlock = calloc(inShaders, sizeof(struct mGLES2Shader));
1101
int n;
1102
for (n = 0; n < inShaders; ++n) {
1103
- char passName[12];
+ char passName[16];
1104
snprintf(passName, sizeof(passName), "pass.%u", n);
1105
const char* fs = ConfigurationGetValue(&description, passName, "fragmentShader");
1106
const char* vs = ConfigurationGetValue(&description, passName, "vertexShader");
0 commit comments