Android: Fix possible crash in memory card editor

This commit is contained in:
Connor McLaughlin 2021-03-22 12:09:22 +10:00
parent 4c3d2cd3fe
commit dd130c2132
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ public class MemoryCardEditorActivity extends AppCompatActivity {
if (cards.isEmpty())
return;
if (newSelection < 0) {
if (newSelection < 0 || newSelection >= tabLayout.getTabCount()) {
if (oldPos < cards.size())
tabLayout.getTabAt(oldPos).select();
else