If you have questions about any aspect of QBasic programming, or would like to help fellow programmers solve their problems, check out this board!
Moderators: Pete, Mods
-
giwake
- Newbie
- Posts: 2
- Joined: Wed Jul 27, 2016 4:33 am
Post
by giwake » Sat Sep 17, 2016 10:16 pm
I'm trying to make a demoscene/animation and I can't find any way to wait less than a second.
Please don't reply with
Because my PC is WAYY too fast.
Thanks,
giwake
-
giwake
- Newbie
- Posts: 2
- Joined: Wed Jul 27, 2016 4:33 am
Post
by giwake » Tue Oct 04, 2016 11:44 pm
Thanks!

-
mikefromca
- Coder
- Posts: 12
- Joined: Wed Oct 16, 2019 11:28 am
Post
by mikefromca » Fri Oct 18, 2019 12:17 am
That makes a delay of 0.1 seconds (1/10th) of a second. Adjust the number to suit your fancy.
Code: Select all
start#=timer
Do
loop until (timer - start#) >= 0.1