summaryrefslogtreecommitdiff
path: root/src/graphics/OpenGLDrawMethods.inl
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-08-15 11:49:10 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-08-15 11:49:10 (GMT)
commit708379a3f859cb0d09e44c5b2c41469396809940 (patch)
treec3687ef63b2ca8e09ec2ecbe12fb2257c7862a34 /src/graphics/OpenGLDrawMethods.inl
parentc8080cb0251890b3a9513756e2438ca0f03ffbd6 (diff)
downloadpowder-708379a3f859cb0d09e44c5b2c41469396809940.zip
powder-708379a3f859cb0d09e44c5b2c41469396809940.tar.gz
Missing "invert" declaration in OpenGLDrawMethods
Diffstat (limited to 'src/graphics/OpenGLDrawMethods.inl')
-rw-r--r--src/graphics/OpenGLDrawMethods.inl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/graphics/OpenGLDrawMethods.inl b/src/graphics/OpenGLDrawMethods.inl
index ac99165..7e3a418 100644
--- a/src/graphics/OpenGLDrawMethods.inl
+++ b/src/graphics/OpenGLDrawMethods.inl
@@ -5,6 +5,7 @@ int PIXELMETHODS_CLASS::drawtext(int x, int y, const char *s, int r, int g, int
return 0;
int oR = r, oG = g, oB = b;
int width, height;
+ bool invert = false;
Graphics::textsize(s, width, height);
VideoBuffer texture(width, height);
int characterX = 0, characterY = 0;