aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-05-27 11:21:59 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-05-27 11:21:59 -0400
commitb2af3049185567dfb48aab18957221198c8eab09 (patch)
treefe6794672dd5fb3001c44810674e4179b8c0b208 /src/yuzu/main.cpp
parent9a36d8600c0b263b4b3861b64051a4f62b4251d2 (diff)
Fix macOS code and change "Swapfile" to "Swap"
Diffstat (limited to 'src/yuzu/main.cpp')
-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();