From 708379a3f859cb0d09e44c5b2c41469396809940 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Wed, 15 Aug 2012 12:49:10 +0100 Subject: [PATCH] Missing "invert" declaration in OpenGLDrawMethods --- src/graphics/OpenGLDrawMethods.inl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/graphics/OpenGLDrawMethods.inl b/src/graphics/OpenGLDrawMethods.inl index ac991657e..7e3a418a8 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;