From bf21d37fe69771586425be806608230026db6f0f Mon Sep 17 00:00:00 2001 From: notaz Date: Thu, 3 Oct 2024 02:40:56 +0300 Subject: [PATCH] fix standalone build --- frontend/plugin_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5