diff --git a/Makefile b/Makefile index 3028320..009605a 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ chd: ${CHD} # Target for running the image run: ${CUESHEET} - pcsx-redux-appimage \ + pcsx-redux \ -run -interpreter -fastboot -stdout \ -iso "$<" diff --git a/src/memalloc.c b/src/memalloc.c index 4e48ee3..a42ba36 100644 --- a/src/memalloc.c +++ b/src/memalloc.c @@ -26,7 +26,7 @@ alloc_arena_malloc(ArenaAllocator *arena, size_t size) { 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); uintptr_t p = (uintptr_t)arena->ptr;