early-access version 3505
This commit is contained in:
parent
41e0d06ed0
commit
7880d7f4e9
2 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3504.
|
This is the source code for early-access 3505.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,8 @@ std::size_t KSystemControl::Init::GetApplicationPoolSize() {
|
||||||
case Smc::MemoryArrangement_6GBForAppletDev:
|
case Smc::MemoryArrangement_6GBForAppletDev:
|
||||||
return 3285_MiB;
|
return 3285_MiB;
|
||||||
case Smc::MemoryArrangement_8GB:
|
case Smc::MemoryArrangement_8GB:
|
||||||
return 4916_MiB;
|
// Real kernel sets this to 4916_MiB. We are not debugging applets.
|
||||||
|
return 6547_MiB;
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
|
|
||||||
|
@ -115,7 +116,8 @@ size_t KSystemControl::Init::GetAppletPoolSize() {
|
||||||
case Smc::MemoryArrangement_6GBForAppletDev:
|
case Smc::MemoryArrangement_6GBForAppletDev:
|
||||||
return 2193_MiB;
|
return 2193_MiB;
|
||||||
case Smc::MemoryArrangement_8GB:
|
case Smc::MemoryArrangement_8GB:
|
||||||
return 2193_MiB;
|
//! Real kernel sets this to 2193_MiB. We are not debugging applets.
|
||||||
|
return 562_MiB;
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue