diff options
author | pommicket <pommicket@gmail.com> | 2022-11-02 21:00:33 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-02 21:00:33 -0400 |
commit | 237412362b6c9476ff98c7eaf63d63ebea136be2 (patch) | |
tree | 716ab68e608a72e45e4a08789a78c2a8ea3c016e /text.c | |
parent | 760526ec4071f9392e5bfca77b19cb20f98c588e (diff) |
multiline config value strings, fix search_cwd (debug feature)
Diffstat (limited to 'text.c')
-rw-r--r-- | text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |