From c7d59c27185d5c7065af5a9cf97d8780f864579e Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 15 Feb 2015 06:17:01 -0500 Subject: [PATCH] v0.2.4: changed audio load order slightly, better for devices experiencing the android L sound bug. --- .../ShatteredPixelDungeon.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index 70b4c83c5..d702fdde1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -86,15 +86,16 @@ public class ShatteredPixelDungeon extends Game { Assets.SND_BADGE, Assets.SND_GOLD, - Assets.SND_DESCEND, - Assets.SND_STEP, - Assets.SND_WATER, - Assets.SND_OPEN, - Assets.SND_UNLOCK, - Assets.SND_ITEM, - Assets.SND_DEWDROP, - Assets.SND_HIT, - Assets.SND_MISS, + Assets.SND_STEP, + Assets.SND_WATER, + Assets.SND_OPEN, + Assets.SND_UNLOCK, + Assets.SND_ITEM, + Assets.SND_DEWDROP, + Assets.SND_HIT, + Assets.SND_MISS, + + Assets.SND_DESCEND, Assets.SND_EAT, Assets.SND_READ, Assets.SND_LULLABY,