mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix gravity line edgeguides
This commit is contained in:
parent
d84ce6b2e8
commit
5b2fbeb6b4
1 changed files with 3 additions and 3 deletions
|
@ -762,17 +762,17 @@ static void draw_edgeguides(void)
|
|||
}
|
||||
if (entity->rx == POS_MOD(ed.levx - 1, cl.mapwidth)
|
||||
// It's to the left...
|
||||
&& x + w >= 312)
|
||||
&& x + w >= SCREEN_WIDTH_PIXELS - 8)
|
||||
{
|
||||
// And touching the right edge!
|
||||
graphics.fill_rect(x, entity->y * 8, 2, 8, green);
|
||||
graphics.fill_rect(0, entity->y * 8, 2, 8, green);
|
||||
}
|
||||
else if (entity->rx == POS_MOD(ed.levx + 1, cl.mapwidth)
|
||||
// It's to the right...
|
||||
&& x <= 0)
|
||||
{
|
||||
// And touching the left edge!
|
||||
graphics.fill_rect(x + w - 2, entity->y * 8, 2, 8, green);
|
||||
graphics.fill_rect(SCREEN_WIDTH_PIXELS - 2, entity->y * 8, 2, 8, green);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue