| 784 | } |
| 785 | |
| 786 | u64 FileMcd_GetCRC(uint port, uint slot) |
| 787 | { |
| 788 | const uint combinedSlot = FileMcd_ConvertToSlot(port, slot); |
| 789 | switch (EmuConfig.Mcd[combinedSlot].Type) |
| 790 | { |
| 791 | case MemoryCardType::File: |
| 792 | return Mcd::impl.GetCRC(combinedSlot); |
| 793 | case MemoryCardType::Folder: |
| 794 | return Mcd::implFolder.GetCRC(combinedSlot); |
| 795 | default: |
| 796 | return 0; |
| 797 | } |
| 798 | } |
| 799 | |
| 800 | void FileMcd_NextFrame(uint port, uint slot) |
| 801 | { |
no test coverage detected