Browse Source

disable fastmem

eden-orbis-ps4
lizzie 4 months ago
parent
commit
2f6c314250
  1. 2
      src/common/settings.cpp

2
src/common/settings.cpp

@ -186,7 +186,7 @@ bool IsFastmemEnabled() {
// Only 4kb systems support host MMU right now
// TODO: Support this
return getpagesize() == 4096;
#elif !defined(__APPLE__) && !defined(__ANDROID__) && !defined(_WIN32) && !defined(__linux__) && !defined(__FreeBSD__)
#elif defined(__OPENORBIS__) || (!defined(__APPLE__) && !defined(__ANDROID__) && !defined(_WIN32) && !defined(__linux__) && !defined(__FreeBSD__))
return false;
#else
return true;

Loading…
Cancel
Save