summaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-11-02 21:00:33 -0400
committerpommicket <pommicket@gmail.com>2022-11-02 21:00:33 -0400
commit237412362b6c9476ff98c7eaf63d63ebea136be2 (patch)
tree716ab68e608a72e45e4a08789a78c2a8ea3c016e /text.c
parent760526ec4071f9392e5bfca77b19cb20f98c588e (diff)
multiline config value strings, fix search_cwd (debug feature)
Diffstat (limited to 'text.c')
-rw-r--r--text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.c b/text.c
index 1aaebe8..144a7a0 100644
--- a/text.c
+++ b/text.c
@@ -112,7 +112,7 @@ void main() {\n\
}\n\
";
- text_program = gl_compile_and_link_shaders(vshader_code, fshader_code);
+ text_program = gl_compile_and_link_shaders(NULL, vshader_code, fshader_code);
text_v_pos = gl_attrib_loc(text_program, "v_pos");
text_v_color = gl_attrib_loc(text_program, "v_color");
text_v_tex_coord = gl_attrib_loc(text_program, "v_tex_coord");