K11Ext: add GetSystemInfo k11extSize

This commit is contained in:
TuxSH 2019-03-29 18:23:52 +01:00
parent 7177799021
commit ae1f85d341

View File

@ -77,6 +77,11 @@ Result GetSystemInfoHook(s64 *out, s32 type, s32 param)
case 0x203: // isSdMode
*out = (cfwInfo.flags >> 6) & 1;
break;
case 0x300: // K11Ext size
*out = (s64)(__end__ - __start__);
break;
default:
res = 0xF8C007F4; // not implemented
break;