remove MemUsage, and therefor psapi dependency

This commit is contained in:
Shawn Hoffman 2017-06-08 22:25:46 -07:00
parent 9885a2bb28
commit f206a4ea9c
5 changed files with 4 additions and 31 deletions

View file

@ -155,8 +155,8 @@ void FrameUpdateOnCPUThread()
// Formatted stop message
std::string StopMessage(bool main_thread, const std::string& message)
{
return StringFromFormat("Stop [%s %i]\t%s\t%s", main_thread ? "Main Thread" : "Video Thread",
Common::CurrentThreadId(), Common::MemUsage().c_str(), message.c_str());
return StringFromFormat("Stop [%s %i]\t%s", main_thread ? "Main Thread" : "Video Thread",
Common::CurrentThreadId(), message.c_str());
}
void DisplayMessage(const std::string& message, int time_in_ms)