Mousecard: fix persisting card in slot-4 after a VM restart. (Fixes #993)

This commit is contained in:
tomcw
2021-10-19 21:56:19 +01:00
parent fa18382757
commit ca611eaa64
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -137,9 +137,9 @@ void CardManager::RemoveInternal(UINT slot)
m_slot[slot] = NULL;
}
void CardManager::Remove(UINT slot)
void CardManager::Remove(UINT slot, bool updateRegistry/*=true*/)
{
Insert(slot, CT_Empty);
Insert(slot, CT_Empty, updateRegistry);
}
void CardManager::InsertAuxInternal(SS_CARDTYPE type)