v0.8.1: Fixed the following bugs:

- Memory leaks and other errors when using split-screen on Android
- Tengu cleansing doomed debuff between first and second phase
- Equip drops from enemies not graduating in rarity as intended
- Gasses being examinable when not visible
This commit is contained in:
Evan Debenham
2020-06-23 18:25:26 -04:00
parent 804a6a88a9
commit 5594172a41
9 changed files with 32 additions and 10 deletions

View File

@@ -22,6 +22,7 @@
android:label="${appName}"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:resizeableActivity="true"
android:launchMode="singleInstance"
android:allowBackup="true"
android:fullBackupOnly="true"
android:backupAgent=".AndroidBackupHandler">

View File

@@ -42,7 +42,7 @@ public class AndroidGame extends AndroidApplication {
public static AndroidApplication instance;
protected static GLSurfaceView view;
private AndroidPlatformSupport support;
private static AndroidPlatformSupport support;
@Override
protected void onCreate (Bundle savedInstanceState) {
@@ -92,7 +92,8 @@ public class AndroidGame extends AndroidApplication {
config.useCompass = false;
config.useAccelerometer = false;
support = new AndroidPlatformSupport();
if (support == null) support = new AndroidPlatformSupport();
else support.resetGenerators();
support.updateSystemUI();