1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Make gravity lines render when screen effects are off

This commit is contained in:
AllyTally 2023-06-15 11:47:01 -03:00 committed by Misa Elizabeth Kai
parent 923efe54d6
commit fd4232e9fd

View file

@ -1700,6 +1700,7 @@ void Graphics::drawgravityline(const int t, const int x, const int y, const int
if (game.noflashingmode)
{
set_color(200 - 20, 200 - 20, 200 - 20);
draw_line(x, y, x + w, y + h);
return;
}