mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- avoid larger time jumps in Ramses text scroll.
This commit is contained in:
parent
ac3546bdaa
commit
78f02fbd55
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ bool TextOverlay::AdvanceCinemaText(double clock)
|
|||
{
|
||||
if (nHeight + nCrawlY > 0 || CDplaying())
|
||||
{
|
||||
nCrawlY-= (clock - lastclock) / 15.; // do proper interpolation.
|
||||
nCrawlY-= min(clock - lastclock, 1.5) / 15.; // do proper interpolation.
|
||||
lastclock = clock;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue