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:
parent
5be6a5ec7d
commit
73c92917e2
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue