From 4dd53284ca7ca972bb1fd2c6c0cf97c715cd2cab Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Wed, 19 Feb 2025 11:19:41 +0100 Subject: [PATCH] increase world size --- src/const.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/const.hpp b/src/const.hpp index 2657f6a..e14a0e9 100644 --- a/src/const.hpp +++ b/src/const.hpp @@ -3,10 +3,10 @@ #ifndef CONST_NS #define CONST_NS -constexpr int SCREEN_WIDTH = 800; -constexpr int SCREEN_HEIGHT = 600; -constexpr int WORLD_WIDTH = 1600; -constexpr int WORLD_HEIGHT = 1200; +constexpr int SCREEN_WIDTH = 1600; +constexpr int SCREEN_HEIGHT = 1200; +constexpr int WORLD_WIDTH = 20000; +constexpr int WORLD_HEIGHT = 200000; constexpr int TARGET_FPS = 60; constexpr Uint64 TARGET_FRAME_TIME_NS = 1'000'000'000 / TARGET_FPS;