GLSL Parser: Fix a warning.

This commit is contained in:
OBattler
2025-08-10 22:42:39 +02:00
parent 324e1480ef
commit 8eefb0fe95

View File

@@ -237,7 +237,7 @@ glslp_t *glslp_parse(const char *f) {
int j;
int len;
int sublen;
char s[513], t[513], z[540];
char s[2049], t[2049], z[2076];
memset(s, 0, sizeof(s));
if (endswith(f, ".glsl"))