Basic Java2D rendering problem

Hey guys, I have been working on a basic isometric tile engine based off this tutorial - http://www.java-gaming.org/topics/basic-game/21919/view.html

Anyone know why I might be getting this white padding around the right hand, and bottom of the screen?

http://img507.imageshack.us/img507/3726/28639844.png

Maybe you are not considering inset and margin stuff of the frame for the drawing origin.

Switch

      frame.pack();
      frame.setResizable(false);

so it says

      frame.setResizable(false);
      frame.pack();

That did the trick! Thank you :slight_smile: