Skip to content
Snippets Groups Projects
Commit 6916667c authored by Sal's avatar Sal
Browse files

Merge branch 'animtimer-fix' into 'next'

Cast animtimer to int before negating

See merge request KartKrew/Kart-Public!17
parents 7176490d e115dbf3
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ static void F_SkyScroll(INT32 scrollspeed)
{
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 120);
x = -animtimer;
x = -((INT32)animtimer);
y = 0;
while (x < w)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment