From 589403d6cd469fa25bd3ea810eb1a30b112217d4 Mon Sep 17 00:00:00 2001 From: Ted John Date: Wed, 21 Sep 2022 21:49:00 +0100 Subject: [PATCH] Fix uninitialised data --- src/openrct2/AssetPack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/AssetPack.h b/src/openrct2/AssetPack.h index 244d16c3cc..77ecfc1e24 100644 --- a/src/openrct2/AssetPack.h +++ b/src/openrct2/AssetPack.h @@ -31,7 +31,7 @@ namespace OpenRCT2 AudioSampleTable _sampleTable; std::vector _entries; - bool _enabled; + bool _enabled{}; public: fs::path Path;