aboutsummaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/map.h b/src/map.h
index 4a71504..bd581ba 100644
--- a/src/map.h
+++ b/src/map.h
@@ -4,18 +4,17 @@
#ifndef MAP_H
#define MAP_H
-#define MAP_ZOOM_MIN 2.0
+#define MAP_ZOOM_MIN 0.5
#define MAP_ZOOM_MAX 30.0
typedef struct {
Rectangle rect;
RenderTexture render;
Camera2D camera;
+ Texture heightmap;
Vector2 playerPosition;
bool isEnabled;
bool isFullSize;
-
- Texture heightmap;
} Map;
void initMap(Map* map, const World* world, const Settings* settings);