diff options
-rw-r--r-- | platform/ios/src/MGLMapView.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm index e9fd568a04..7096c55a8c 100644 --- a/platform/ios/src/MGLMapView.mm +++ b/platform/ios/src/MGLMapView.mm @@ -1219,6 +1219,10 @@ public: // CADisplayLink.frameInterval does not support more than 60 FPS (and // no device that supports >60 FPS ever supported iOS 9). NSInteger maximumFrameRate = 60; + + // `0` is an alias for maximum frame rate. + newFrameRate = newFrameRate ?: maximumFrameRate; + _displayLink.frameInterval = maximumFrameRate / MIN(newFrameRate, maximumFrameRate); } } |