comparison game/Engine.java @ 140:f3703e617342

Comment out a spurious debug message.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 25 Nov 2011 11:29:57 +0200
parents be9cc2ee3c16
children f01cb1ea26a5
comparison
equal deleted inserted replaced
139:be9cc2ee3c16 140:f3703e617342
700 updateBoard = true; 700 updateBoard = true;
701 } 701 }
702 702
703 if (updateBoard) 703 if (updateBoard)
704 { 704 {
705 System.out.print("updateBoard()\n"); 705 // System.out.print("updateBoard()\n");
706 G.lautaBGScaled = new BufferedImage(dim.width, dim.height, BufferedImage.TYPE_INT_RGB); 706 G.lautaBGScaled = new BufferedImage(dim.width, dim.height, BufferedImage.TYPE_INT_RGB);
707 Graphics2D gimg = G.lautaBGScaled.createGraphics(); 707 Graphics2D gimg = G.lautaBGScaled.createGraphics();
708 gimg.setRenderingHint(RenderingHints.KEY_INTERPOLATION, 708 gimg.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
709 RenderingHints.VALUE_INTERPOLATION_BICUBIC); 709 RenderingHints.VALUE_INTERPOLATION_BICUBIC);
710 710