diff --git a/korge/src/korlibs/korge/view/View.kt b/korge/src/korlibs/korge/view/View.kt index 5b297fa67..b58fbc297 100644 --- a/korge/src/korlibs/korge/view/View.kt +++ b/korge/src/korlibs/korge/view/View.kt @@ -1553,12 +1553,6 @@ fun T.addFixedUpdater( break } } - if (calls > 0) { - // Do not accumulate for small fractions since this would cause hiccups! - if (accum < time * 0.25) { - accum = FastDuration.ZERO - } - } } }