1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-04-23 03:03:19 +00:00

Oh bother

This commit is contained in:
Lignum 2017-05-07 13:09:51 +02:00
parent 0164032a4a
commit 941d47908f
No known key found for this signature in database
GPG Key ID: 0889206F5A8A700D

View File

@ -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 )