1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix #24422: More than one viewport is causing issues

This commit is contained in:
Matt
2025-05-17 23:38:25 +03:00
committed by GitHub
parent 16bcca5f5f
commit e20824d1fa

View File

@@ -47,7 +47,7 @@
#include "WindowBase.h"
#include <cstring>
#include <sfl/segmented_vector.hpp>
#include <list>
#include <unordered_map>
namespace OpenRCT2
@@ -65,7 +65,7 @@ namespace OpenRCT2
uint8_t gShowLandRightsRefCount;
uint8_t gShowConstructionRightsRefCount;
static sfl::segmented_vector<Viewport, 32> _viewports;
static std::list<Viewport> _viewports;
Viewport* g_music_tracking_viewport;
static std::unique_ptr<JobPool> _paintJobs;