diff options
author | henriquelalves <henriquelalves@gmail.com> | 2024-05-26 14:39:55 +0300 |
---|---|---|
committer | henriquelalves <henriquelalves@gmail.com> | 2024-05-26 14:39:55 +0300 |
commit | 56a3d75bbbd80512f76817a05eebaabdcaf37ae2 (patch) | |
tree | f6e3b87c484ebe3df51d6e43d9e76b4ded9efb01 /sources/main.c | |
parent | 0a89a84956311f17648bb443e429dab25d35f0cc (diff) | |
download | gamejam-slgj-2024-56a3d75bbbd80512f76817a05eebaabdcaf37ae2.tar.gz gamejam-slgj-2024-56a3d75bbbd80512f76817a05eebaabdcaf37ae2.tar.bz2 gamejam-slgj-2024-56a3d75bbbd80512f76817a05eebaabdcaf37ae2.zip |
Update for SLGJ 2024
Diffstat (limited to 'sources/main.c')
-rw-r--r-- | sources/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/main.c b/sources/main.c index 34f2eda..a7ae609 100644 --- a/sources/main.c +++ b/sources/main.c @@ -54,8 +54,8 @@ int main(int argc, char* argv[]) { rl_core_define_methods(s7); rl_shapes_define_methods(s7); - const int screen_width = 800; - const int screen_height = 600; + const int screen_width = 600; + const int screen_height = 450; InitWindow(screen_width, screen_height, "SLGJ - 2024"); SetTargetFPS(60); |