| 798 | } |
| 799 | |
| 800 | void FileMcd_NextFrame(uint port, uint slot) |
| 801 | { |
| 802 | const uint combinedSlot = FileMcd_ConvertToSlot(port, slot); |
| 803 | switch (EmuConfig.Mcd[combinedSlot].Type) |
| 804 | { |
| 805 | //case MemoryCardType::MemoryCard_File: |
| 806 | // Mcd::impl.NextFrame( combinedSlot ); |
| 807 | // break; |
| 808 | case MemoryCardType::Folder: |
| 809 | Mcd::implFolder.NextFrame(combinedSlot); |
| 810 | break; |
| 811 | default: |
| 812 | return; |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | int FileMcd_ReIndex(uint port, uint slot, const std::string& filter) |
| 817 | { |
no test coverage detected