[*] minor fix in refactored code -> console line breaks got dinked by fedex in the moving process

This commit is contained in:
Reece Wilson 2022-01-20 20:22:03 +00:00
parent 490d3892a2
commit 56e08ac3d9
2 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,7 @@ namespace Aurora::Console::Hooks
ConsoleMessage dup = msg;
dup.line = line;
TryWrite(msg);
TryWrite(dup);
});
}
}

View File

@ -99,6 +99,7 @@ namespace Aurora::HWInfo
ULONGLONG SharedCommitUsage;
} vm;
static const PROCESSINFOCLASS kProcessVmCounters = static_cast<PROCESSINFOCLASS>(3);
if (NtQueryInformationProcess(GetCurrentProcess(), kProcessVmCounters, &vm, sizeof(vm), 0))