System: Add non-persistent memory card type

This commit is contained in:
Connor McLaughlin
2021-05-23 17:11:59 +10:00
parent 3dc7ef92c2
commit d9a655fb41
4 changed files with 13 additions and 4 deletions

View File

@ -1871,6 +1871,12 @@ void UpdateMemoryCards()
card = MemoryCard::Open(g_settings.memory_card_paths[i]);
}
break;
case MemoryCardType::NonPersistent:
{
card = MemoryCard::Create();
}
break;
}
if (card)