Skip to content

Commit a76b88c

Browse files
committed
[Mac OS X] Fix ISO Verification Failed crashes
1 parent 98906eb commit a76b88c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rpcs3/Loader/ISO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static void* get_aligned_buf()
4040
#if defined(_WIN32)
4141
buf = _aligned_malloc(ISO_SECTOR_SIZE, ISO_SECTOR_SIZE * 2);
4242
#else
43-
buf = std::aligned_alloc(ISO_SECTOR_SIZE * 2, ISO_SECTOR_SIZE);
43+
buf = std::aligned_alloc(ISO_SECTOR_SIZE * 2, ISO_SECTOR_SIZE * 2);
4444
#endif
4545
}
4646

0 commit comments

Comments
 (0)