Allocate only interpreter or dynarec + hopefully fixed some FPU bugs + hopefully it will build in Windows CI 🙏
This commit is contained in:
@@ -91,7 +91,7 @@ inline void* aligned_alloc(size_t alignment, size_t size) {
|
||||
return _aligned_malloc(size, alignment);
|
||||
}
|
||||
|
||||
inline void free(void* ptr) {
|
||||
inline void aligned_free(void* ptr) {
|
||||
_aligned_free(ptr);
|
||||
}
|
||||
#else
|
||||
@@ -99,7 +99,7 @@ inline void* aligned_alloc(size_t alignment, size_t size) {
|
||||
return std::aligned_alloc(alignment, size);
|
||||
}
|
||||
|
||||
inline void free(void* ptr) {
|
||||
inline void aligned_free(void* ptr) {
|
||||
std::free(ptr);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user