mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-27 17:39:41 -06:00
fix 4kb page check
oops
This commit is contained in:
@ -754,7 +754,7 @@ bool ARMJIT_Memory::IsFastMemSupported()
|
||||
PageSize = RegularPageSize;
|
||||
#else
|
||||
PageSize = __sysconf(_SC_PAGESIZE);
|
||||
isSupported = PageShift == RegularPageSize || PageSize == LargePageSize;
|
||||
isSupported = PageSize == RegularPageSize || PageSize == LargePageSize;
|
||||
#endif
|
||||
PageShift = __builtin_ctz(PageSize);
|
||||
initialised = true;
|
||||
|
Reference in New Issue
Block a user