mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-06-17 14:11:35 +00:00
Capped bitrate at 100Mbps.
Choosing 4K 120Hz was causing an assert/crash.
This commit is contained in:
@@ -199,7 +199,7 @@ static const int bitrateTable[] = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// We should always be exactly on a slider position with default bitrates
|
// We should always be exactly on a slider position with default bitrates
|
||||||
_bitrate = defaultBitrate;
|
_bitrate = MIN(defaultBitrate, 100000);
|
||||||
assert(bitrateTable[[self getSliderValueForBitrate:_bitrate]] == _bitrate);
|
assert(bitrateTable[[self getSliderValueForBitrate:_bitrate]] == _bitrate);
|
||||||
[self.bitrateSlider setValue:[self getSliderValueForBitrate:_bitrate] animated:YES];
|
[self.bitrateSlider setValue:[self getSliderValueForBitrate:_bitrate] animated:YES];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user