# HG changeset patch # User reimar # Date 1367703882 0 # Node ID a8fc00cb36c3eae07ff6f0742cdfcd8e3f84ba57 # Parent 5302a565ada7d25841b1d3df96b5677d1aee57a7 Fix matrixview color. Was broken when replacing glColor4f with glColor4ub. diff -r 5302a565ada7 -r a8fc00cb36c3 libvo/matrixview.c --- a/libvo/matrixview.c Sat May 04 21:41:37 2013 +0000 +++ b/libvo/matrixview.c Sat May 04 21:44:42 2013 +0000 @@ -77,7 +77,7 @@ ty = (float)num2 / 7; tx = (float)num3 / 10; mpglNormal3f(0.0f, 0.0f, 1.0f); // Needed for lighting - mpglColor4ub(0, 255, 255, light); // Basic polygon color + mpglColor4ub(0, 255, 0, light); // Basic polygon color mpglTexCoord2f(tx, ty); mpglVertex3f(x, y, z);