summaryrefslogtreecommitdiffstats
path: root/application/setupwizard
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-07-11 22:43:35 +0200
committerPetr Mrázek <peterix@gmail.com>2017-07-11 22:43:35 +0200
commitafb0db24a801d935e9945c948ea8d4b831b59d38 (patch)
tree5db4cc2da656a2f8ffa51306ec808e3ec7632090 /application/setupwizard
parent5ea170db7805528b1355cfe94987c349e851e5c3 (diff)
downloadMultiMC-afb0db24a801d935e9945c948ea8d4b831b59d38.tar
MultiMC-afb0db24a801d935e9945c948ea8d4b831b59d38.tar.gz
MultiMC-afb0db24a801d935e9945c948ea8d4b831b59d38.tar.lz
MultiMC-afb0db24a801d935e9945c948ea8d4b831b59d38.tar.xz
MultiMC-afb0db24a801d935e9945c948ea8d4b831b59d38.zip
NOISSUE set max of java heap spinboxes to detected physical memory
Diffstat (limited to 'application/setupwizard')
-rw-r--r--application/setupwizard/JavaWizardPage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/setupwizard/JavaWizardPage.cpp b/application/setupwizard/JavaWizardPage.cpp
index 46b6ee3f..50f61681 100644
--- a/application/setupwizard/JavaWizardPage.cpp
+++ b/application/setupwizard/JavaWizardPage.cpp
@@ -22,7 +22,7 @@
JavaWizardPage::JavaWizardPage(QWidget *parent)
:BaseWizardPage(parent)
{
- m_availableMemory = Sys::getSystemRam() / (1024ull * 1024ull);
+ m_availableMemory = Sys::getSystemRam() / Sys::megabyte;
goodIcon = MMC->getThemedIcon("status-good");
yellowIcon = MMC->getThemedIcon("status-yellow");