--- old/src/java.desktop/share/classes/java/awt/SplashScreen.java 2016-03-01 13:48:37.054671889 +0530 +++ new/src/java.desktop/share/classes/java/awt/SplashScreen.java 2016-03-01 13:48:36.846671886 +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; }