From 3a27ba7db179601f73fce5715ff2bb215bb48238 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Wed, 10 Dec 2025 15:21:49 +0100 Subject: [PATCH] Fix #25628: AVX2 and SSE4 availability not detected correctly Co-authored-by: TBoshoven --- distribution/changelog.txt | 1 + src/openrct2/platform/Platform.Common.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 2a76ba1eaa..f4baf05c01 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -15,6 +15,7 @@ - Fix: [#25571] Potential crash due to drawing a Crooked House ride. - Fix: [#25588] When the master server becomes unreachable the server would not register again until a restart. - Fix: [#25592] Log flume, river rapids, & splash boats can get control failure breakdown instead of brakes failure. +- Fix: [#25628] Availability of AVX2 and SSE4.1 is not detected correctly. 0.4.29 (2025-11-22) ------------------------------------------------------------------------ diff --git a/src/openrct2/platform/Platform.Common.cpp b/src/openrct2/platform/Platform.Common.cpp index a64aed2942..e33cc7b7e3 100644 --- a/src/openrct2/platform/Platform.Common.cpp +++ b/src/openrct2/platform/Platform.Common.cpp @@ -27,6 +27,7 @@ #include "../Context.h" #include "../Game.h" +#include "../core/CallingConventions.h" #include "../core/File.h" #include "../core/Path.hpp" #include "../core/String.hpp"