diff options
-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; |