v0.7.1a: fixed a serious loading bug, and re-manifest commit
This commit is contained in:
parent
fc5cca1446
commit
f840e5b2f0
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.shatteredpixel.shatteredpixeldungeon"
|
package="com.shatteredpixel.shatteredpixeldungeon"
|
||||||
android:versionCode="319"
|
android:versionCode="320"
|
||||||
android:versionName="0.7.1a"
|
android:versionName="0.7.1a"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|
||||||
|
|
|
@ -143,7 +143,9 @@ public abstract class Actor implements Bundlable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static synchronized void fixTime() {
|
public static synchronized void fixTime() {
|
||||||
|
|
||||||
|
if (all.isEmpty()) return;
|
||||||
|
|
||||||
float min = Float.MAX_VALUE;
|
float min = Float.MAX_VALUE;
|
||||||
for (Actor a : all) {
|
for (Actor a : all) {
|
||||||
if (a.time < min) {
|
if (a.time < min) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user