Quick fix on pcsx-redux invoking

This commit is contained in:
Lucas S. Vieira 2025-04-07 14:14:47 -03:00
parent bad4a023f7
commit ed2eef6c4e
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ chd: ${CHD}
# Target for running the image # Target for running the image
run: ${CUESHEET} run: ${CUESHEET}
pcsx-redux-appimage \ pcsx-redux \
-run -interpreter -fastboot -stdout \ -run -interpreter -fastboot -stdout \
-iso "$<" -iso "$<"

View file

@ -26,7 +26,7 @@ alloc_arena_malloc(ArenaAllocator *arena, size_t size)
{ {
if(size == 0) return NULL; if(size == 0) return NULL;
// Align size so we don't get unaligned memory access // ALIGN SIZE so we don't get unaligned memory access
size += 8 - (size % 8); size += 8 - (size % 8);
uintptr_t p = (uintptr_t)arena->ptr; uintptr_t p = (uintptr_t)arena->ptr;