diff options
Diffstat (limited to 'src/com/fourisland/fourpuzzle/window/Window.java')
-rw-r--r-- | src/com/fourisland/fourpuzzle/window/Window.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/fourisland/fourpuzzle/window/Window.java b/src/com/fourisland/fourpuzzle/window/Window.java index f970b68..db1bfab 100644 --- a/src/com/fourisland/fourpuzzle/window/Window.java +++ b/src/com/fourisland/fourpuzzle/window/Window.java | |||
@@ -5,6 +5,7 @@ | |||
5 | 5 | ||
6 | package com.fourisland.fourpuzzle.window; | 6 | package com.fourisland.fourpuzzle.window; |
7 | 7 | ||
8 | import com.fourisland.fourpuzzle.Display; | ||
8 | import com.fourisland.fourpuzzle.util.Interval; | 9 | import com.fourisland.fourpuzzle.util.Interval; |
9 | import java.awt.Graphics2D; | 10 | import java.awt.Graphics2D; |
10 | import java.awt.Rectangle; | 11 | import java.awt.Rectangle; |
@@ -134,7 +135,7 @@ public enum Window | |||
134 | 135 | ||
135 | public BufferedImage getImage(int width, int height) | 136 | public BufferedImage getImage(int width, int height) |
136 | { | 137 | { |
137 | BufferedImage temp = new BufferedImage(getFullWidth(width), getFullHeight(height), BufferedImage.TYPE_INT_ARGB); | 138 | BufferedImage temp = Display.createCanvas(getFullWidth(width), getFullHeight(height)); |
138 | Graphics2D g = temp.createGraphics(); | 139 | Graphics2D g = temp.createGraphics(); |
139 | 140 | ||
140 | g.drawImage(getBackground(), 3, 3, getFullWidth(width)-6, getFullHeight(height)-6, null); | 141 | g.drawImage(getBackground(), 3, 3, getFullWidth(width)-6, getFullHeight(height)-6, null); |