diff --git a/res/menu-back.png b/res/menu-back.png index e3678753..34f690b7 100644 Binary files a/res/menu-back.png and b/res/menu-back.png differ diff --git a/res/playfield.png b/res/playfield.png index e7f45899..34f690b7 100644 Binary files a/res/playfield.png and b/res/playfield.png differ diff --git a/src/itdelatrisu/opsu/GameImage.java b/src/itdelatrisu/opsu/GameImage.java index 36466e10..cc864eb0 100644 --- a/src/itdelatrisu/opsu/GameImage.java +++ b/src/itdelatrisu/opsu/GameImage.java @@ -90,7 +90,9 @@ public enum GameImage { PLAYFIELD ("playfield", "png|jpg", false, false) { @Override protected Image process_sub(Image img, int w, int h) { - img.setAlpha(0.7f); + if (img.getWidth() == 1 && img.getHeight() == 1) { + img = MENU_BG.getImage().getFlippedCopy(/*h*/ false, /*v*/ true); + } return img.getScaledCopy(w, h); } },