Merge pull request #11470 from MayImilae/remove-memory-card-path-from-osd-message

Remove Memory Card Path from the Wrote to OSD Message
This commit is contained in:
Pierre Bourdon 2023-01-22 08:13:51 +01:00 committed by GitHub
commit 0eb984f030
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,9 +156,8 @@ void MemoryCard::FlushThread()
if (do_exit)
return;
Core::DisplayMessage(fmt::format("Wrote memory card {} contents to {}",
m_card_slot == ExpansionInterface::Slot::A ? 'A' : 'B',
m_filename),
Core::DisplayMessage(fmt::format("Wrote to Memory Card {}",
m_card_slot == ExpansionInterface::Slot::A ? 'A' : 'B'),
4000);
}
}