evil haxx

This commit is contained in:
lizzie 2025-12-01 21:35:01 +00:00
parent 130a9d44a8
commit 60fc94de8e
3 changed files with 6 additions and 4 deletions

View file

@ -85,7 +85,11 @@ size_t KSystemControl::Init::GetIntendedMemorySize() {
switch (GetMemorySizeForInit()) {
case Smc::MemorySize_4GB:
default: // All invalid modes should go to 4GB.
#ifdef __OPENORBIS__
return 2_GiB;
#else
return 4_GiB;
#endif
case Smc::MemorySize_6GB:
return 6_GiB;
case Smc::MemorySize_8GB: