diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-29 18:58:15 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-29 18:58:15 -0400 |
| commit | 813ab32a2d16106f2799fba4e85c768a5b1c4850 (patch) | |
| tree | 382af986c9a776e84447ddd06cf20e43f0ce42c2 /src/main.cpp | |
| parent | fb6512b72ebf86d5273744774388deb14c8a21ae (diff) | |
added a warning when running in compatibility mode
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 75148c4b..e43ec6d0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -472,12 +472,14 @@ int runApplication(MOApplication &application, SingleInstance &instance, qInfo().nospace().noquote() << "windows: " << env.windowsVersion().toString(); + if (env.windowsVersion().compatibilityMode()) { + qWarning() << "MO seems to be running in compatibility mode"; + } + qInfo() << "modules loaded in process:"; for (const auto& m : env.loadedModules()) { qInfo().nospace().noquote() << " . " << m.toString(); } - - return 0; } QString dataPath = application.property("dataPath").toString(); |
