Skip to content

Commit

Permalink
Increase the delay a little bit to make the game a bit more managable…
Browse files Browse the repository at this point in the history
…. Probably should decrease the delay a little over time. Althought that won't matter much for the tinyscreen video game kit, it woould increase the difficulty on the tinyarcade.
  • Loading branch information
dulsi committed Jan 29, 2018
1 parent 14dcbe3 commit 7a2834a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viobyte.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1004,9 +1004,9 @@ void loop()
refresh = 0;
count = 0;
}
if ((lastTime > oldTime) && (lastTime - oldTime < 61))
if ((lastTime > oldTime) && (lastTime - oldTime < 70))
{
delay(61 - (lastTime - oldTime));
delay(70 - (lastTime - oldTime));
}
if (dotsLeft == 0)
{
Expand Down

0 comments on commit 7a2834a

Please sign in to comment.