diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 1ddb278..1c797e3 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -38,8 +38,8 @@ + android:versionCode="11" + android:versionName="1.7" > + android:versionCode="11" + android:versionName="1.7" > Soft Drop Acceleration - 1.6\nTouch here to view the public repository of this project + 1.7\nTouch here to view the public repository of this project Version https://github.com/vocollapse/Blockinger diff --git a/src/org/blockinger/game/components/Sound.java b/src/org/blockinger/game/components/Sound.java index 25758d3..115b13d 100644 --- a/src/org/blockinger/game/components/Sound.java +++ b/src/org/blockinger/game/components/Sound.java @@ -308,9 +308,6 @@ public void resume() { } public void pauseMusic() { - if(isInactive) - return; - isMusicReady = false; if(musicPlayer != null) { try{ @@ -323,9 +320,6 @@ public void pauseMusic() { } public void pause() { - if(isInactive) - return; - soundPool.autoPause(); pauseMusic(); }