mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
Quick fix on pcsx-redux invoking
This commit is contained in:
parent
bad4a023f7
commit
ed2eef6c4e
2 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -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 "$<"
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue