| 61 | } |
| 62 | |
| 63 | std::size_t CSoundChipService::GetSupportedChannelCount(sound_chip_t chip) const { |
| 64 | auto *pChip = GetTypePtr(chip); |
| 65 | return pChip ? pChip->GetSupportedChannelCount() : static_cast<std::size_t>(0u); |
| 66 | } |
| 67 | |
| 68 | std::string_view CSoundChipService::GetChipShortName(sound_chip_t chip) const { |
| 69 | return GetType(chip).GetShortName(); |
no outgoing calls
no test coverage detected