2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 05:07:43 +00:00

Copy urde/hecl/visigen into macOS app bundle

This commit is contained in:
2021-03-19 14:59:34 -04:00
parent 32ba74db08
commit aace28fc19
4 changed files with 18 additions and 12 deletions

View File

@@ -164,7 +164,7 @@ QVariant SysReqTableModel::data(const QModelIndex& index, int role) const {
return m_freeDiskSpace >= qint64(5) * 1000 * 1000 * 1000;
case 4:
#ifdef __APPLE__
return m_macosMajor > 10 || m_macosMinor >= 9;
return m_macosMajor > 10 || m_macosMinor >= 11;
#elif defined(_WIN32)
return m_win7SP1OrGreater;
#else
@@ -191,7 +191,7 @@ QVariant SysReqTableModel::data(const QModelIndex& index, int role) const {
return tr("5 GB (MP1)");
case 4:
#ifdef __APPLE__
return tr("macOS 10.9");
return tr("macOS 10.11");
#elif defined(_WIN32)
return tr("Windows 7 SP1");
#elif defined(__linux__)