From 602ef7c1e141c52e7fbdd9efd05c0ff023aa1d73 Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Thu, 8 Dec 2022 14:10:31 +0300 Subject: [PATCH] Increase maps ambient sfx capacity --- src/worldmap.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/worldmap.cc b/src/worldmap.cc index 1fc325e..7f1f954 100644 --- a/src/worldmap.cc +++ b/src/worldmap.cc @@ -52,7 +52,9 @@ namespace fallout { #define TILE_WALK_MASK_NAME_SIZE (40) #define ENTRANCE_LIST_CAPACITY (10) -#define MAP_AMBIENT_SOUND_EFFECTS_CAPACITY (6) +// Up from 6 to handle `Tartar 3rd Floor 2` and `Livos Living Rooms` sfx +// configuration in Olympus. +#define MAP_AMBIENT_SOUND_EFFECTS_CAPACITY (7) #define MAP_STARTING_POINTS_CAPACITY (15) #define SUBTILE_GRID_WIDTH (7)