- always align the "loogies" to a virtual 320x200 screen to render them consistently.

This commit is contained in:
Christoph Oelckers 2020-07-29 20:04:57 +02:00
parent fb184388a2
commit bd3b2bc5bf
2 changed files with 4 additions and 4 deletions

View file

@ -1865,8 +1865,8 @@ void moveweapons_d(void)
ps[p].loogcnt = 24*4;
for(x=0;x < j;x++)
{
ps[p].loogiex[x] = krand()%xdim;
ps[p].loogiey[x] = krand()%ydim;
ps[p].loogiex[x] = krand()%320;
ps[p].loogiey[x] = krand()%200;
}
}
}

View file

@ -1411,8 +1411,8 @@ void moveweapons_r(void)
ps[p].loogcnt = 24 * 4;
for (x = 0; x < j; x++)
{
ps[p].loogiex[x] = krand() % xdim;
ps[p].loogiey[x] = krand() % ydim;
ps[p].loogiex[x] = krand() % 320;
ps[p].loogiey[x] = krand() % 200;
}
}
}