From: notaz Date: Wed, 2 Oct 2024 23:40:56 +0000 (+0300) Subject: fix standalone build X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf21d37fe69771586425be806608230026db6f0f;p=pcsx_rearmed.git fix standalone build --- diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index 21d6863d..c8a6fed4 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -877,7 +877,7 @@ static void *pl_emu_mmap(unsigned long addr, size_t size, enum psxMapTag tag, int *can_retry_addr) { *can_retry_addr = 1; - return plat_mmap(addr, size, 0, is_fixed); + return plat_mmap(addr, size, 0, 0); } static void pl_emu_munmap(void *ptr, size_t size, enum psxMapTag tag)