Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-04-09 20:10:50 +0000
committerStijn Buys <ingar@osirion.org>2008-04-09 20:10:50 +0000
commita2c0647e07d178fd69b962205f4b1163682e2d80 (patch)
tree055f753f4d4a6c9e55ffa250ae13e9831531c40e /src/client/console.cc
parent62423c6b9fbae0f427eac6d26d39db80541d5ee2 (diff)
fix texture binding
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index 04f896f..28d80f0 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -122,10 +122,7 @@ void draw()
float con_height = 0.70f;
- glBindTexture(GL_TEXTURE_2D, render::textures[1]); // bitmaps/conchars.tga
-
// draw version below the bottom of the console
- gl::enable(GL_TEXTURE_2D);
gl::color(0.0f, 1.0f, 0.0f, 0.5f);
std::string version(core::name());
version += ' ';
@@ -180,7 +177,7 @@ void draw()
std::string cursor("_");
draw_text(CHARWIDTH*(input_pos+1), video::height*con_height - CHARHEIGHT - 4 , cursor);
}
- gl::disable(GL_TEXTURE_2D);
+
}
void flush()