aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom White <weiss@jade.(none)>2008-09-29 19:08:02 +0100
committerThomas White <taw27@cam.ac.uk>2008-10-02 17:56:45 +0100
commitc4712b41f5923f819e48ca7c886e8019e58f078e (patch)
tree1274f57571f98038222ea27f37824a1ca9093f8d
parente65956563da586d740ec11f8504b357a6b517ead (diff)
Change background colour
(Old green colours were making me feel ill)
-rw-r--r--src/glbits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glbits.c b/src/glbits.c
index 3641579..ba03adf 100644
--- a/src/glbits.c
+++ b/src/glbits.c
@@ -676,8 +676,8 @@ gint glbits_expose(GtkWidget *widget, GdkEventExpose *event, DisplayWindow *dw)
GLfloat w = dw->drawing_area->allocation.width;
GLfloat h = dw->drawing_area->allocation.height;
GLfloat aspect = w/h;
- GLfloat bg_top[] = { 0.6, 0.9, 0.8, 1.0 };
- GLfloat bg_bot[] = { 0.3, 0.7, 0.5, 1.0 };
+ GLfloat bg_top[] = { 0.0, 0.3, 1.0, 1.0 };
+ GLfloat bg_bot[] = { 0.0, 0.7, 1.0, 1.0 };
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();