| 56 | } |
| 57 | |
| 58 | CSoundChipSet CSoundChipSet::EnableChip(sound_chip_t chip, bool enable) const { |
| 59 | auto flag = *this; |
| 60 | flag.chips_.set(value_cast(chip), enable); |
| 61 | return flag; |
| 62 | } |
| 63 | |
| 64 | CSoundChipSet CSoundChipSet::WithChip(sound_chip_t chip) const { |
| 65 | return EnableChip(chip, true); |
no test coverage detected