From 5a817e1c70feeccf4d797a7e54337f65264cad3f Mon Sep 17 00:00:00 2001 From: James Turk Date: Sun, 14 Dec 2003 22:40:00 +0000 Subject: [PATCH] fixed alpha (commented out) --- src/ZE_ZImage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ZE_ZImage.cpp b/src/ZE_ZImage.cpp index adab997..2ace89b 100644 --- a/src/ZE_ZImage.cpp +++ b/src/ZE_ZImage.cpp @@ -13,7 +13,7 @@ \brief Source file for ZImage. Implementation of ZImage, the Image class for ZEngine. -
$Id: ZE_ZImage.cpp,v 1.52 2003/11/24 02:21:20 cozman Exp $
+
$Id: ZE_ZImage.cpp,v 1.53 2003/12/14 22:40:00 cozman Exp $
\author James Turk **/ @@ -317,7 +317,7 @@ void ZImage::DrawClipped(int x, int y, ZRect clipRect) const void ZImage::Draw(float x, float y) const { - //glColor4ub(255,255,255,rAlpha); //sets the color correctly + glColor4ub(255,255,255,rAlpha); //sets the color correctly Bind(); glBegin(GL_TRIANGLE_STRIP); //triangle strips, speedier? glTexCoord2f(rTexMinX,rTexMinY); glVertex2f(x,y);