Cleanup: Remove unused code

This is no longer needed.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
Christopher Snowhill 2025-02-27 14:31:44 -08:00
parent 24888a669b
commit bfa9660437
2 changed files with 0 additions and 12 deletions

View file

@ -107,6 +107,4 @@
- (double)getPostVisLatency;
- (void)setVolume:(double)v;
@end

View file

@ -359,14 +359,4 @@
return latency;
}
- (void)setVolume:(double)v {
AudioPlayer * audioPlayer = controller;
if(audioPlayer) {
OutputNode *outputNode = [audioPlayer output];
if(outputNode) {
[outputNode setVolume:v];
}
}
}
@end