| 269 | } |
| 270 | |
| 271 | int CSoundDriver::GetChannelNote(stChannelID chan) const { |
| 272 | const auto *ch = GetChannelHandler(chan); |
| 273 | return ch ? ch->GetActiveNote() : -1; |
| 274 | } |
| 275 | |
| 276 | int CSoundDriver::GetChannelVolume(stChannelID chan) const { |
| 277 | const auto *ch = GetChannelHandler(chan); |
nothing calls this directly
no test coverage detected