Follow-ups to #21.

- Reverted "Extends ScoresData bg to clock", as this was intended behavior.
- Fixed overlapping text in the options menu, and made it look more similar to the other menus.
- Fixed issues with the text and icon in the song menu header in certain resolutions.
- Fixed minor issue with ranking screen header text positioning.
- Decreased skip button hover scale.
- Some code style changes.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2015-02-18 19:35:26 -05:00
parent f2ac160dfa
commit 1a4120a736
13 changed files with 139 additions and 163 deletions

View File

@@ -45,6 +45,7 @@ import org.newdawn.slick.util.Log;
*
* @author kevin
*/
@SuppressWarnings("unused")
public class Image implements Renderable {
/** The top left corner identifier */
public static final int TOP_LEFT = 0;
@@ -570,6 +571,7 @@ public class Image implements Renderable {
* @param x The x location to draw the image at
* @param y The y location to draw the image at
*/
@Override
public void draw(float x, float y) {
init();
draw(x,y,width,height);
@@ -1316,9 +1318,7 @@ public class Image implements Renderable {
GL.glBegin(SGL.GL_QUADS);
}
/**
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
init();