From 262a9f29e8fbb4a4dff5471d8611f1ac0491d345 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 24 Mar 2019 22:24:40 +0100 Subject: [PATCH] Fix formatting --- src/openrct2/util/Util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/util/Util.cpp b/src/openrct2/util/Util.cpp index ec2e3556d0..5373e7352f 100644 --- a/src/openrct2/util/Util.cpp +++ b/src/openrct2/util/Util.cpp @@ -225,7 +225,7 @@ bool avx2_available() #ifdef OPENRCT2_X86 // For GCC and similar use the builtin function, as cpuid changed its semantics in // https://github.com/gcc-mirror/gcc/commit/132fa33ce998df69a9f793d63785785f4b93e6f1 - // which causes it to ignore subleafs, but the new function is unavailable on + // which causes it to ignore subleafs, but the new function is unavailable on // Ubuntu 18.04's toolchains. # if defined(OpenRCT2_CPUID_GNUC_X86) && (!defined(__FreeBSD__) || (__FreeBSD__ > 10)) return __builtin_cpu_supports("avx2");