Formatting of comments

This commit is contained in:
Venaf 2017-02-13 22:06:47 -06:00
parent 8150fc7a86
commit a1896ec525

View file

@ -12,7 +12,7 @@ public class PonySkinModifier implements ISkinModifier {
public void convertSkin(BufferedImage skin, Graphics dest) { public void convertSkin(BufferedImage skin, Graphics dest) {
int scale = skin.getWidth() / 64; int scale = skin.getWidth() / 64;
//drawImage(dest, skin, scale, 64, 32, 56, 48, 56, 16, 64, 32); //old code from 2015, let's try it :D //drawImage(dest, skin, scale, 64, 32, 56, 48, 56, 16, 64, 32); //old code from 2015, let's try it :D
//That didn't work right, needs un-mirrored horizontally //That didn't work right, needs un-mirrored horizontally
drawImage(dest, skin, scale, 64, 32, 56, 48, 64, 16, 56, 32); // same code as above but not horizontally flipping the wing texture it copies drawImage(dest, skin, scale, 64, 32, 56, 48, 64, 16, 56, 32); // same code as above but not horizontally flipping the wing texture it copies
//removed all below code because it doesn't seem to be necessary if you just mirror the model //removed all below code because it doesn't seem to be necessary if you just mirror the model