Raise maximum OSR framerate to 240
This commit is contained in:
parent
304fd49e84
commit
099bbfbafb
1 changed files with 2 additions and 2 deletions
|
@ -1167,8 +1167,8 @@ void OffScreenRenderWidgetHostView::SetFrameRate(int frame_rate) {
|
|||
} else {
|
||||
if (frame_rate <= 0)
|
||||
frame_rate = 1;
|
||||
if (frame_rate > 60)
|
||||
frame_rate = 60;
|
||||
if (frame_rate > 240)
|
||||
frame_rate = 240;
|
||||
|
||||
frame_rate_ = frame_rate;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue