diff options
author | davidovski <david@sendula.com> | 2021-04-24 15:52:05 +0100 |
---|---|---|
committer | davidovski <david@sendula.com> | 2021-04-24 15:52:05 +0100 |
commit | 49a3300fe24ad4c0d5c17d059c031286076bfb69 (patch) | |
tree | ef04acb99008e296f508fefab5a44dc1cd719147 /asteroids.c | |
parent | 8cb785f791ed4e9a655e80c4668544143a7c59a4 (diff) |
changed resolution
Diffstat (limited to 'asteroids.c')
-rw-r--r-- | asteroids.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asteroids.c b/asteroids.c index ca6828b..50855c9 100644 --- a/asteroids.c +++ b/asteroids.c @@ -4,8 +4,8 @@ #include <math.h> #include <time.h> -const int width = 2650; -const int height = 1440; +const int width = 800; +const int height = 800; const int fps = 60; const Color bg = BLACK; |