mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Intermission: fix marquee scroll
This commit is contained in:
parent
aa94bdb7cc
commit
582b76f168
1 changed files with 8 additions and 2 deletions
|
|
@ -668,8 +668,14 @@ skiptallydrawer:
|
||||||
// Draw the checker pattern (scroll pending)
|
// Draw the checker pattern (scroll pending)
|
||||||
//V_DrawMappedPatch(0, 0, V_SUBTRACT, rbgchk, 0);
|
//V_DrawMappedPatch(0, 0, V_SUBTRACT, rbgchk, 0);
|
||||||
|
|
||||||
V_DrawFixedPatch(-mqscroll, 154<<FRACBITS, FRACUNIT, V_SUBTRACT, rrmq, NULL);
|
{
|
||||||
V_DrawFixedPatch(-mqscroll + mqloop, 154<<FRACBITS, FRACUNIT, V_SUBTRACT, rrmq, NULL);
|
fixed_t x;
|
||||||
|
|
||||||
|
for (x = -mqscroll; x < (BASEVIDWIDTH * FRACUNIT); x += mqloop)
|
||||||
|
{
|
||||||
|
V_DrawFixedPatch(x, 154<<FRACBITS, FRACUNIT, V_SUBTRACT, rrmq, NULL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mqscroll += (1*renderdeltatics);
|
mqscroll += (1*renderdeltatics);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue