Fix builds on platforms other than win32--oops

git-svn-id: https://svn.eduke32.com/eduke32@7746 1a8010ca-5511-0410-912e-c29ae57300e0

# Conflicts:
#	source/build/include/compat.h
This commit is contained in:
terminx 2019-06-25 20:47:09 +00:00 committed by Christoph Oelckers
parent c1d261965f
commit 3269875e7b

View file

@ -918,7 +918,7 @@ static FORCE_INLINE void *Baligned_alloc(const size_t alignment, const size_t si
#if defined _WIN32 && !defined NO_ALIGNED_MALLOC
# define Baligned_free _aligned_free
#else
# define Baligned_free xfree()
# define Baligned_free Bfree
#endif