From 60fbb7fe5e2fb3c4ccdb953f333a548b4cd3a2c9 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Wed, 4 Jun 2025 22:42:34 -0500 Subject: [PATCH] Fix incorrect _MSC_VER and replace with _WIN32 --- src/QtUtilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QtUtilities.h b/src/QtUtilities.h index adfa6b6a..54106f71 100644 --- a/src/QtUtilities.h +++ b/src/QtUtilities.h @@ -31,7 +31,7 @@ namespace openshot { // Cross-platform aligned free function inline void aligned_free(void* ptr) { -#if defined(_MSC_VER) +#if defined(_WIN32) _aligned_free(ptr); #else free(ptr);