summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-05-27 17:21:59 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-05-27 17:21:59 +0200
commitb2af3049185567dfb48aab18957221198c8eab09 (patch)
treefe6794672dd5fb3001c44810674e4179b8c0b208 /src/yuzu
parentmain: Log host system memory parameters (diff)
downloadyuzu-b2af3049185567dfb48aab18957221198c8eab09.tar
yuzu-b2af3049185567dfb48aab18957221198c8eab09.tar.gz
yuzu-b2af3049185567dfb48aab18957221198c8eab09.tar.bz2
yuzu-b2af3049185567dfb48aab18957221198c8eab09.tar.lz
yuzu-b2af3049185567dfb48aab18957221198c8eab09.tar.xz
yuzu-b2af3049185567dfb48aab18957221198c8eab09.tar.zst
yuzu-b2af3049185567dfb48aab18957221198c8eab09.zip
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index f690a1508..270cccc77 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -222,7 +222,7 @@ GMainWindow::GMainWindow()
LOG_INFO(Frontend, "Host OS: {}", QSysInfo::prettyProductName().toStdString());
LOG_INFO(Frontend, "Host RAM: {:.2f} GB",
Common::GetMemInfo().TotalPhysicalMemory / 1024.0f / 1024 / 1024);
- LOG_INFO(Frontend, "Host Swapfile: {:.2f} GB",
+ LOG_INFO(Frontend, "Host Swap: {:.2f} GB",
Common::GetMemInfo().TotalSwapMemory / 1024.0f / 1024 / 1024);
UpdateWindowTitle();