v0.2.4: removed PD's source from title scene (not needed now that we're on latest, may add to about scene if it's needed again)

This commit is contained in:
Evan Debenham
2015-02-23 01:50:42 -05:00
parent c99f02bf66
commit d93016aa4d
@@ -146,18 +146,11 @@ public class TitleScene extends PixelScene {
btnHighscores.setPos( w / 2, btnPlay.top() );
}
BitmapText source = new BitmapText( "PD source v 1.7.5a", font1x );
source.measure();
source.hardlight( 0x444444 );
source.x = w - source.width();
source.y = h - source.height();
add( source );
BitmapText version = new BitmapText( "v " + Game.version + "", font1x );
version.measure();
version.hardlight( 0xCCCCCC );
version.x = w - version.width();
version.y = h - version.height() - source.height();
version.y = h - version.height();
add( version );
PrefsButton btnPrefs = new PrefsButton();