mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 02:17:56 -05:00
Added string_util to common, small changes in loader.cpp
This commit is contained in:
@ -190,7 +190,7 @@ std::string MemUsage()
|
||||
if (NULL == hProcess) return "MemUsage Error";
|
||||
|
||||
if (GetProcessMemoryInfo(hProcess, &pmc, sizeof(pmc)))
|
||||
Ret = StringFromFormat("%s K", ThousandSeparate(pmc.WorkingSetSize / 1024, 7).c_str());
|
||||
Ret = Common::StringFromFormat("%s K", Common::ThousandSeparate(pmc.WorkingSetSize / 1024, 7).c_str());
|
||||
|
||||
CloseHandle(hProcess);
|
||||
return Ret;
|
||||
|
Reference in New Issue
Block a user