Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/text.cc')
-rw-r--r--src/render/text.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/text.cc b/src/render/text.cc
index 7c1ae8e..f5c221f 100644
--- a/src/render/text.cc
+++ b/src/render/text.cc
@@ -98,16 +98,16 @@ void Text::draw(float x, float y, const char ascii)
gl::begin(gl::Quads);
glTexCoord2f(fcol, frow);
- gl::vertex(x,y,1);
+ gl::vertex(x,y, 0);
glTexCoord2f(fcol + 0.0625f, frow);
- gl::vertex(x+text_fontwidth,y,1);
+ gl::vertex(x+text_fontwidth,y, 0);
glTexCoord2f(fcol +0.0625f, frow + 0.0625f);
- gl::vertex(x+text_fontwidth,y+text_fontheight,1);
+ gl::vertex(x+text_fontwidth,y+text_fontheight, 0);
glTexCoord2f(fcol, frow+0.0625f);
- gl::vertex(x,y+text_fontheight,1);
+ gl::vertex(x,y+text_fontheight, 0);
gl::end();
}