1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Merge pull request #19668 from karst/miniminimap

Decrease minimum map size from 13 to 3
This commit is contained in:
Matthias Moninger
2023-03-20 18:21:55 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -29,6 +29,7 @@
- Improved: [#19447] The control key now enables word jumping in text input fields.
- Improved: [#19463] Added W and Y with circumflex to sprite font (for Welsh).
- Improved: [#19549] Enable large address awareness for 32 bit Windows builds allowing to use 4 GiB of virtual memory.
- Improved: [#19668] Decreased the minimum map size from 13 to 3.
- Change: [#19018] Renamed actions to fit the naming scheme.
- Change: [#19091] [Plugin] Add game action information to callback arguments of custom actions.
- Change: [#19233] Reduce lift speed minimum and maximum values for “Classic Wooden Coaster”.

View File

@@ -21,7 +21,7 @@
#define MINIMUM_WATER_HEIGHT 2
#define MAXIMUM_WATER_HEIGHT 142
#define MINIMUM_MAP_SIZE_TECHNICAL 15
#define MINIMUM_MAP_SIZE_TECHNICAL 5
#define MAXIMUM_MAP_SIZE_TECHNICAL 1001
#define MINIMUM_MAP_SIZE_PRACTICAL (MINIMUM_MAP_SIZE_TECHNICAL - 2)
#define MAXIMUM_MAP_SIZE_PRACTICAL (MAXIMUM_MAP_SIZE_TECHNICAL - 2)