Slightly increase intro text scrolling speed.

Scrolling 1/4 pixel per frame results in jerky motion, mostly because 4
times 16 2/3 milliseconds is not a round number. Scrolling 1/3 pixel per
frame results in much smoother scrolling.
This commit is contained in:
Guus Sliepen 2011-08-24 23:32:00 +02:00
parent 5be6a5ec7d
commit 73c92917e2
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ void showStory()
{
for (int i = 0 ; i < 9 ; i++)
{
graphics.textShape[i].y -= 0.25;
graphics.textShape[i].y -= 0.33333;
graphics.blitText(i);
}
}