Better water, water is love.

This commit is contained in:
KikooDX 2020-03-20 11:46:52 +01:00
parent ff3c1ffe01
commit c65b7b17a8
3 changed files with 2 additions and 3 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -132,7 +132,7 @@ int main(void)
}
else
{
if (on_ground != 6 && vspd < MAX_VSPD) vspd += GRAV / (1 + in_water);
if (on_ground != 6 && vspd < MAX_VSPD) vspd += GRAV;
if (on_ground) on_ground--;
}
//in water?
@ -211,7 +211,6 @@ int main(void)
level_id++;
set_level(level_id, level);
DRAW_LEVEL();
dprint(100, 0, C_WHITE, C_BLACK, "%d", level_id);
player_x = start_x;
player_y = start_y;
polarity = 0;