Mercurial > mplayer.hg
changeset 36138:a8fc00cb36c3
Fix matrixview color.
Was broken when replacing glColor4f with glColor4ub.
author | reimar |
---|---|
date | Sat, 04 May 2013 21:44:42 +0000 |
parents | 5302a565ada7 |
children | 1f8e6c375fc3 |
files | libvo/matrixview.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);