2.9.1 Update

This commit is contained in:
epicstudios856 2024-05-14 23:58:22 +03:00
parent 14f9f51739
commit 33a99e9596
6 changed files with 61 additions and 61 deletions

View file

@ -255,6 +255,13 @@ public class MainSettingsManager extends AppCompatActivity
super.onCreate(savedInstanceState);
mHandler = new Handler();
Preference prefIfType = findPreference("ifType");
if (getArch(activity).equals("ARM64"))
if (prefIfType != null) {
prefIfType.setVisible(false);
}
Preference pref = findPreference("vmArch");
if (pref != null) {
pref.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {