Minor change made to solar system simulator

I've made a minor change to the recent post about my solar system simulator which should fix the flashing screen bug.

The code should have been:

*refresh off
//draw stuff on the screen
*refresh
//wait a short period

rather than:

*refresh off
//draw stuff on the screen
*refresh on
//wait a short period

Thanks to Sam for pointing this out.

D'oh!