1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 17:39:09 +00:00

Fix #11783, 953445a: TTO savegames are not 65536 by 65536

This commit is contained in:
Rubidium
2024-01-15 19:10:13 +01:00
committed by rubidium42
parent f5b320e502
commit 67b405d2f6

View File

@@ -14,7 +14,7 @@
#include "../tile_type.h"
static const uint BUFFER_SIZE = 4096;
static const uint OLD_MAP_SIZE = 256 * 256;
static const uint OLD_MAP_SIZE = 256;
struct LoadgameState {
FILE *file;