Fix for unix build, aligned_free does not exist in unix should use plain free instead.

This commit is contained in:
harry 2022-08-23 18:18:25 -04:00
parent 892e7cb5f5
commit b97b24a5e9
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ static void _FCEU_free(void* ptr)
#ifdef _MSC_VER
_aligned_free(ptr);
#else
aligned_free(ptr);
free(ptr);
#endif
}