aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 09a87bf..88a314c 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -275,11 +275,12 @@ namespace ui {
// draw the character
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, (*ftex)[c - 33]);
- glUniform1i(Render::textShader.uniform[WU_texture], 0);
- glUniform4f(Render::textShader.uniform[WU_tex_color], 1.0f, 1.0f, 1.0f, 1.0f);
Render::textShader.use();
Render::textShader.enable();
+
+ glUniform4f(Render::textShader.uniform[WU_tex_color], 1.0f, 1.0f, 1.0f, 1.0f);
+
GLfloat tex_coord[] = {
0.0, 1.0, //bottom left
1.0, 1.0, //bottom right