summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/glwrapper-ogl.cc
diff options
context:
space:
mode:
authorEnne Walker <enne.walker@gmail.com>2010-05-10 22:17:12 -0400
committerEnne Walker <enne.walker@gmail.com>2010-05-14 18:18:53 -0400
commit53d2a4b791ded9b8818c507b749c33848288fd56 (patch)
tree83536471caf7f3865401ced5ac1efcf70aa4b375 /crawl-ref/source/glwrapper-ogl.cc
parent5f37332d3f99cae46f5a84ebb5b4af1a644ee774 (diff)
downloadcrawl-ref-53d2a4b791ded9b8818c507b749c33848288fd56.tar.gz
crawl-ref-53d2a4b791ded9b8818c507b749c33848288fd56.zip
Remove unused GL_V4F vertex format.
Diffstat (limited to 'crawl-ref/source/glwrapper-ogl.cc')
-rw-r--r--crawl-ref/source/glwrapper-ogl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/glwrapper-ogl.cc b/crawl-ref/source/glwrapper-ogl.cc
index d24bd5b55d..01893d2d4a 100644
--- a/crawl-ref/source/glwrapper-ogl.cc
+++ b/crawl-ref/source/glwrapper-ogl.cc
@@ -213,7 +213,7 @@ void OGLStateManager::set_current_color(GLW_3VF &color)
glColor3f(color.r, color.g, color.b);
}
-void OGLStateManager::set_current_color(GLW_4VF &color)
+void OGLStateManager::set_current_color(VColour &color)
{
glColor4f(color.r, color.g, color.b, color.a);
}