From 063d488dced7db1a7cc3573c07af5f4e6278bb1d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 8 Jul 2015 10:07:11 -0400 Subject: [PATCH] v0.3.1: updated about scene to point to shattered website instead of tumblr. --- .../shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java index a15d09470..fc9d4344f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java @@ -100,7 +100,7 @@ public class AboutScene extends PixelScene { TouchArea shpxhotArea = new TouchArea( shpxlink ) { @Override protected void onClick( Touch touch ) { - Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "http://shatteredpixel.tumblr.com") ); + Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "http://" + LNK_SHPX ) ); Game.instance.startActivity( intent ); } };