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
1 changed files with 1 additions and 1 deletions

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;