Fix for unix build, aligned_free does not exist in unix should use plain free instead.
This commit is contained in:
parent
892e7cb5f5
commit
b97b24a5e9
|
@ -52,7 +52,7 @@ static void _FCEU_free(void* ptr)
|
|||
#ifdef _MSC_VER
|
||||
_aligned_free(ptr);
|
||||
#else
|
||||
aligned_free(ptr);
|
||||
free(ptr);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue