--- old/src/java.desktop/share/classes/java/awt/SplashScreen.java 2016-02-23 11:54:30.201720737 +0530 +++ new/src/java.desktop/share/classes/java/awt/SplashScreen.java 2016-02-23 11:54:29.997720735 +0530 @@ -251,7 +251,7 @@ assert scale > 0; if (scale > 0 && scale != 1) { bounds.setSize((int) (bounds.getWidth() / scale), - (int) (bounds.getWidth() / scale)); + (int) (bounds.getHeight() / scale)); } return bounds; }