Pad: Use memory card filename from current state

Fixes memory card data getting lost after loading state.
This commit is contained in:
Connor McLaughlin
2020-09-27 01:33:24 +10:00
parent 3b68c4028d
commit b979706417
2 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,7 @@ bool Pad::DoState(StateWrapper& sw)
if (m_memory_cards[i]->GetData() == card_from_state->GetData())
{
Log_DevPrintf("Using memory card %u state from save state", i);
card_from_state->SetFilename(m_memory_cards[i]->GetFilename());
m_memory_cards[i] = std::move(card_from_state);
}
else