mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'animtimer-fix' into 'next'
Cast animtimer to int before negating See merge request KartKrew/Kart-Public!17
This commit is contained in:
commit
85bdeb344e
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@ static void F_SkyScroll(INT32 scrollspeed)
|
||||||
{
|
{
|
||||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 120);
|
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 120);
|
||||||
|
|
||||||
x = -animtimer;
|
x = -((INT32)animtimer);
|
||||||
y = 0;
|
y = 0;
|
||||||
while (x < w)
|
while (x < w)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue