diff --git a/src/openrct2/entity/EntityRegistry.cpp b/src/openrct2/entity/EntityRegistry.cpp index 477a561116..a020a56b40 100644 --- a/src/openrct2/entity/EntityRegistry.cpp +++ b/src/openrct2/entity/EntityRegistry.cpp @@ -36,20 +36,12 @@ union Entity { - EntityBase base{}; - Vehicle vehicle; - Guest guest; - Staff staff; - Litter litter; - SteamParticle steamParticle; - MoneyEffect money; - VehicleCrashParticle crashParticle; - ExplosionCloud explosionCloud; - CrashSplashParticle crashSplash; - ExplosionFlare explosionFlare; - JumpingFountain jumpingFountain; - Balloon balloon; - Duck duck; + uint8_t pad_00[0x200]; + EntityBase base; + Entity() + : pad_00() + { + } }; static Entity _entities[MAX_ENTITIES]{};