mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
fix final bug and update changelog
This commit is contained in:
parent
7e5a9c0623
commit
e8ad3d640c
2 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
package="com.randomityguy.mbhaxe.mbp"
|
package="com.randomityguy.mbhaxe.mbp"
|
||||||
android:installLocation="auto"
|
android:installLocation="auto"
|
||||||
android:versionCode="1"
|
android:versionCode="1"
|
||||||
android:versionName="1.0">
|
android:versionName="1.5.0">
|
||||||
|
|
||||||
<!-- Tell the system this app requires OpenGL ES 3.0. -->
|
<!-- Tell the system this app requires OpenGL ES 3.0. -->
|
||||||
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ class RestartButton extends TouchButton {
|
||||||
this.guiElement.horizSizing = Right;
|
this.guiElement.horizSizing = Right;
|
||||||
this.guiElement.vertSizing = Bottom;
|
this.guiElement.vertSizing = Bottom;
|
||||||
this.onClick = () -> {
|
this.onClick = () -> {
|
||||||
if (MarbleGame.instance.world.finishTime == null)
|
if (MarbleGame.instance.world.finishTime == null && !MarbleGame.instance.paused)
|
||||||
MarbleGame.instance.world.performRestart();
|
MarbleGame.instance.world.performRestart();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue