Memcard: Remove erroneous auto eject decrement

This commit is contained in:
RedPanda4552 2023-07-28 22:52:22 -04:00 committed by refractionpcsx2
parent 5bb0a07164
commit dbdc74fdef
1 changed files with 0 additions and 11 deletions

View File

@ -212,17 +212,6 @@ void Sio2::Memcard()
g_Sio2FifoOut.push_back(0x00);
}
mcd->autoEjectTicks--;
if (mcd->autoEjectTicks == 0)
{
Host::AddKeyedOSDMessage(fmt::format("AutoEjectSlotClear{}{}", port, slot),
fmt::format(TRANSLATE_FS("MemoryCard", "Memory card in port {} / slot {} reinserted"),
port + 1,
slot + 1),
Host::OSD_INFO_DURATION);
}
return;
}