| 712 | } |
| 713 | |
| 714 | void FileMcd_GetSizeInfo(uint port, uint slot, McdSizeInfo* outways) |
| 715 | { |
| 716 | const uint combinedSlot = FileMcd_ConvertToSlot(port, slot); |
| 717 | switch (EmuConfig.Mcd[combinedSlot].Type) |
| 718 | { |
| 719 | case MemoryCardType::File: |
| 720 | Mcd::impl.GetSizeInfo(combinedSlot, *outways); |
| 721 | break; |
| 722 | case MemoryCardType::Folder: |
| 723 | Mcd::implFolder.GetSizeInfo(combinedSlot, *outways); |
| 724 | break; |
| 725 | default: |
| 726 | return; |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | bool FileMcd_IsPSX(uint port, uint slot) |
| 731 | { |
no test coverage detected