From 67b405d2f68a429e3396259cd71ce11908514917 Mon Sep 17 00:00:00 2001 From: Rubidium Date: Mon, 15 Jan 2024 19:10:13 +0100 Subject: [PATCH] Fix #11783, 953445a: TTO savegames are not 65536 by 65536 --- src/saveload/oldloader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/saveload/oldloader.h b/src/saveload/oldloader.h index 3eaa20425a..6043fb8071 100644 --- 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;