You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Fix incorrect _MSC_VER and replace with _WIN32
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user