1
0
Fork 0

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

pull/11786/head
Rubidium 2024-01-15 19:10:13 +01:00
parent a679a88260
commit 341a224be6
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;