diff --git a/examples/ex2-fps-requestAnimationFrame.html b/examples/ex2-fps-requestAnimationFrame.html index 8ff7952..5836590 100644 --- a/examples/ex2-fps-requestAnimationFrame.html +++ b/examples/ex2-fps-requestAnimationFrame.html @@ -16,7 +16,7 @@ window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(/* function */ callback, /* DOMElement */ element) { - window.setTimeout(callback, 1); + window.setTimeout(callback, 1000 / 60); }; })();