diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 02:24:09 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 02:24:09 -0600 |
commit | a90e1987de75cfecc2693952625af8cce507ae95 (patch) | |
tree | 5a0c3b195db071563e028b839b5dbd34157ec546 /src/gameScreen.c | |
parent | 028cf5d33d99274deea9567159a4eb07c13ef85c (diff) |
Added acceleration
Diffstat (limited to 'src/gameScreen.c')
-rw-r--r-- | src/gameScreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gameScreen.c b/src/gameScreen.c index c62584a..893da0c 100644 --- a/src/gameScreen.c +++ b/src/gameScreen.c @@ -9,7 +9,7 @@ void updateGameScreen(Game * game) { BeginMode3D(game->playerCamera); - DrawGrid(100, 5.0); + DrawGrid(500, 25.0); game->ship.drawCb(game, &game->ship, 0); |