Sooo, trying to add a new frame with Java's tut on chat, and it keeps messing up which turns out to be this...

how would I fix it so it lines right up?
here is the code in class 30:
Code:
if (s.startsWith("backvmid3") && i == 0)
{
try
{
Image image = Toolkit.getDefaultToolkit().getImage("sprites/BACKVMID3 0.png");
anInt1440 = 39;
anInt1441 = 128;
anIntArray1439 = new int[anInt1440 * anInt1441];
PixelGrabber pixelgrabber = new PixelGrabber(image, 0, 0, anInt1440, anInt1441, anIntArray1439, 0, anInt1440);
pixelgrabber.grabPixels();
}
catch (Exception exception)
{
System.out.println(((Object) (exception)));
}
}