# HG changeset patch # User Rubidium # Date 2024-01-15 18:10:13 # Node ID 20f74fb7c65d2268f6ad26302b3b882dc6e4a1a2 # Parent 1ebe16c3eb3ff9a7b94d05b27ab455f9af1730c4 Fix #11783, 953445a: TTO savegames are not 65536 by 65536 diff --git a/src/saveload/oldloader.h b/src/saveload/oldloader.h --- a/src/saveload/oldloader.h +++ b/src/saveload/oldloader.h @@ -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;