Oh bother

This commit is contained in:
Lignum
2017-05-07 13:09:51 +02:00
parent 0164032a4a
commit 941d47908f
@@ -35,7 +35,7 @@ public class FixedWidthFontRenderer
private static void greyscaleify( float[] rgb )
{
Arrays.fill(rgb, ( rgb[0] + rgb[1] + rgb[2] ) / 3.0f);
Arrays.fill( rgb, ( rgb[0] + rgb[1] + rgb[2] ) / 3.0f );
}
private void drawChar( VertexBuffer renderer, double x, double y, int index, int color, Palette p, boolean greyscale )