mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-14 23:28:52 -04:00
Fix migration related bug
This commit is contained in:
parent
eb01e750e5
commit
46c682da6b
@ -411,8 +411,11 @@ public class PojavLoginActivity extends BaseActivity {
|
|||||||
if(config == null) continue; // Skip the version
|
if(config == null) continue; // Skip the version
|
||||||
|
|
||||||
// Replaced by gl4es_extra
|
// Replaced by gl4es_extra
|
||||||
if(config.renderer.contains("zink")) config.renderer = "opengles3_virgl";
|
if(config.renderer != null) {
|
||||||
if(!config.renderer.contains("virgl")) config.renderer = null;
|
if (config.renderer.contains("zink")) config.renderer = "opengles3_virgl";
|
||||||
|
if (!config.renderer.contains("virgl")) config.renderer = null;
|
||||||
|
}
|
||||||
|
|
||||||
if(config.renderer == null && config.gamePath == null &&
|
if(config.renderer == null && config.gamePath == null &&
|
||||||
config.jvmArgs == null && config.selectedRuntime == null){
|
config.jvmArgs == null && config.selectedRuntime == null){
|
||||||
continue; // Empty pvc, skip it.
|
continue; // Empty pvc, skip it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user