From a7e406f2daa541ceb9bfb9fad1b117ef76393f45 Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Tue, 14 Feb 2023 19:57:15 +0300 Subject: [PATCH] Fix entrance name buffer size Closes #27 --- src/game/worldmap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/worldmap.cc b/src/game/worldmap.cc index ef8da23..238563e 100644 --- a/src/game/worldmap.cc +++ b/src/game/worldmap.cc @@ -3536,7 +3536,7 @@ static int RegTMAPsels(int win, int city) int color = colorTable[992] | 0x10000; int v4 = 0; int index; - char name[16]; + char name[64]; int name_x; int button_x; int button_y;