| 698 | } |
| 699 | |
| 700 | s32 FileMcd_IsPresent(uint port, uint slot) |
| 701 | { |
| 702 | const uint combinedSlot = FileMcd_ConvertToSlot(port, slot); |
| 703 | switch (EmuConfig.Mcd[combinedSlot].Type) |
| 704 | { |
| 705 | case MemoryCardType::File: |
| 706 | return Mcd::impl.IsPresent(combinedSlot); |
| 707 | case MemoryCardType::Folder: |
| 708 | return Mcd::implFolder.IsPresent(combinedSlot); |
| 709 | default: |
| 710 | return false; |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | void FileMcd_GetSizeInfo(uint port, uint slot, McdSizeInfo* outways) |
| 715 | { |
no test coverage detected