1
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-11-22 15:06:25 +00:00
Lakka-LibreELEC/projects/RPi/devices/RPi5/patches/flycast/0001-define-pagesize.patch
Tomáš Kelemen (vudiq) 3dd0096eda
flycast: update patch
2024-04-09 06:15:58 +02:00

14 lines
350 B
Diff

diff --git a/core/stdclass.h b/core/stdclass.h
index 36fe655..3824ed3 100644
--- a/core/stdclass.h
+++ b/core/stdclass.h
@@ -16,7 +16,7 @@
#elif defined(__APPLE__) && defined(__aarch64__)
#define PAGE_SIZE 16384
#elif !defined(PAGE_SIZE)
-#define PAGE_SIZE 4096
+#define PAGE_SIZE 16384
#endif
#ifndef PAGE_MASK
#define PAGE_MASK (PAGE_SIZE-1)