Lowercase enums

This commit is contained in:
Anuken
2020-06-21 12:38:59 -04:00
parent 6f1a64db78
commit 4a8be42258
13 changed files with 23 additions and 24 deletions

View File

@@ -339,7 +339,7 @@ public class Renderer implements ApplicationListener{
lines[i + 3] = (byte)255;
}
buffer.end();
Pixmap fullPixmap = new Pixmap(w, h, Pixmap.Format.RGBA8888);
Pixmap fullPixmap = new Pixmap(w, h, Pixmap.Format.rgba8888);
Buffers.copy(lines, 0, fullPixmap.getPixels(), lines.length);
Fi file = screenshotDirectory.child("screenshot-" + Time.millis() + ".png");
PixmapIO.writePNG(file, fullPixmap);