From c1271b904b730dbf427366d9aa6388037931ba84 Mon Sep 17 00:00:00 2001 From: pixel Date: Sat, 21 Dec 2002 12:36:36 +0000 Subject: Bleh --- include/Color.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/Color.h b/include/Color.h index d9388a2..06390ff 100644 --- a/include/Color.h +++ b/include/Color.h @@ -4,6 +4,7 @@ struct Color { Color(unsigned char aR, unsigned char aG, unsigned char aB, unsigned char aA = 255) : R(aR), G(aG), B(aB), A(aA) { } + Color(const Color & c) : R(c.R), G(c.G), B(c.B), A(c.A) { } unsigned char R, G, B, A; #ifdef GL_COLOR void Bind() { glColor4d((double) R / 255, (double) G / 255, (double) B / 255, (double) A / 255); } -- cgit v1.2.3