diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/TitleScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/TitleScene.java index 291fc6f3c..294e7f3ef 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/TitleScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/TitleScene.java @@ -100,6 +100,8 @@ public class TitleScene extends PixelScene { }; btnHighscores.setPos( w / 2, btnPlay.top() ); add( btnHighscores ); + + BitmapText version = new BitmapText( "v " + Game.version, font1x ); version.measure(); @@ -107,6 +109,13 @@ public class TitleScene extends PixelScene { version.x = w - version.width(); version.y = h - version.height(); add( version ); + + BitmapText source = new BitmapText( "PD source v 1.7.1c", font1x ); + source.measure(); + source.hardlight( 0x292929 ); + source.x = w - source.width(); + source.y = h - source.height(); + add( source ); PrefsButton btnPrefs = new PrefsButton(); btnPrefs.setPos( w - btnPrefs.width() - 1, 1 );