STATIC SUB SetFramerate ( rate AS Integer )Allow to limit the framerate (time between two video frames) if needed.
Framerate is usually known as FPS (frames per seconds). Limitation is disabled if rate is equal to zero or if time between two refresh is greater than specified rate.
It's always good to limit framerate (it should release some CPU cycles) and can be usefull with fastest computer.
' Limit framerate to 80 Fps Screen.SetFramerate(80)
You can know current framerate with Screen.GetFramerate method.