Use svcGetInfo definitions from libnx

Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com>
This commit is contained in:
Adrian Graber 2021-07-13 00:41:56 +02:00
parent a7b38e1b34
commit 207378c947
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ psInitialize(void)
debug("Physical memory size %llu\n", _dwMemAvailPhys);
debug("Available physical memory %llu\n", size);
#elif defined (__SWITCH__)
svcGetInfo(&_dwMemAvailPhys, 7, 0xffff8001, 0);
svcGetInfo(&_dwMemAvailPhys, InfoType_UsedMemorySize, CUR_PROCESS_HANDLE, 0);
debug("Physical memory size %llu\n", _dwMemAvailPhys);
#else
struct sysinfo systemInfo;