mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Remove gravity line kludge from Graphics::drawgravityline()
Now that the game loop order is now fixed, there is no longer any need for this kludge.
This commit is contained in:
parent
5e2fc6f0fe
commit
c26b701f5b
1 changed files with 1 additions and 1 deletions
|
@ -1541,7 +1541,7 @@ void Graphics::drawgravityline( int t )
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (obj.entities[t].life == 0 || obj.entities[t].onentity == 1) // FIXME: Remove 'onentity == 1' when game loop order is fixed!
|
if (obj.entities[t].life == 0)
|
||||||
{
|
{
|
||||||
switch(linestate)
|
switch(linestate)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue