mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Implement NetStartDialogLoadAsync, L10N additions
Also improved cellPadPeriphGetInfo
This commit is contained in:
parent
f9731de777
commit
cd7fbae583
15 changed files with 521 additions and 38 deletions
|
|
@ -44,16 +44,20 @@ u32 map_offset_pos = 0;
|
|||
*/
|
||||
u32 gcmGetLocalMemorySize(u32 sdk_version)
|
||||
{
|
||||
if (sdk_version >= 0x00220000) {
|
||||
if (sdk_version >= 0x00220000)
|
||||
{
|
||||
return 0x0F900000; // 249MB
|
||||
}
|
||||
if (sdk_version >= 0x00200000) {
|
||||
if (sdk_version >= 0x00200000)
|
||||
{
|
||||
return 0x0F200000; // 242MB
|
||||
}
|
||||
if (sdk_version >= 0x00190000) {
|
||||
if (sdk_version >= 0x00190000)
|
||||
{
|
||||
return 0x0EA00000; // 234MB
|
||||
}
|
||||
if (sdk_version >= 0x00180000) {
|
||||
if (sdk_version >= 0x00180000)
|
||||
{
|
||||
return 0x0E800000; // 232MB
|
||||
}
|
||||
return 0x0E000000; // 224MB
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue