Fix incorrect _MSC_VER and replace with _WIN32

This commit is contained in:
Jonathan Thomas
2025-06-04 22:42:34 -05:00
parent 38afcea242
commit 60fbb7fe5e

View File

@@ -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);