diff --git a/!TheEscape/!RunImage,ffb b/!TheEscape/!RunImage,ffb index 949c81a..212ab72 100644 Binary files a/!TheEscape/!RunImage,ffb and b/!TheEscape/!RunImage,ffb differ diff --git a/!TheEscape/!RunImage,ffb.bas b/!TheEscape/!RunImage,ffb.bas index eb2984c..650c1c8 100644 --- a/!TheEscape/!RunImage,ffb.bas +++ b/!TheEscape/!RunImage,ffb.bas @@ -493,11 +493,19 @@ DEF PROCinputs ShipSprite$ = "player_shipr" ResetShipSprite% = Cents% + 20 PlayerLocation%(0) = PlayerLocation%(0) + (XMovePerCent% * (Cents% - LastCents%)) + IF PlayerLocation%(0) > (SCREENGFXWIDTH% - PlayerHitbox%(2)) THEN + PlayerLocation%(0) = (SCREENGFXWIDTH% - PlayerHitbox%(2)) + ShipSprite$ = "player_ship" + ENDIF ENDIF IF INKEY(-26) THEN ShipSprite$ = "player_shipl" ResetShipSprite% = Cents% + 20 PlayerLocation%(0) = PlayerLocation%(0) - (XMovePerCent% * (Cents% - LastCents%)) + IF PlayerLocation%(0) < 0 THEN + PlayerLocation%(0) = 0 + ShipSprite$ = "player_ship" + ENDIF ENDIF IF INKEY(-58) THEN PlayerVelocity% = PlayerVelocity% + 1