diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 09:31:59 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 09:31:59 -0400 |
| commit | e11ca50a57f1890eab160694ae9ee64f2f7096c8 (patch) | |
| tree | 5a589005bf2380d3e2dd0cfa58e81beb4030f3b2 /src/main.cpp | |
| parent | d49f038d5dc813796f8ae4e6ac1631e09bf06bf3 (diff) | |
update available log is now info instead of debug
added AV warning when a game plugin is no longer available
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index b6b25dd7..2bb3f964 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -298,7 +298,10 @@ MOBase::IPluginGame *determineCurrentGame( if (gameConfigured) { MOBase::IPluginGame *game = plugins.managedGame(*gameName); if (game == nullptr) { - reportError(QObject::tr("Plugin to handle %1 no longer installed").arg(*gameName)); + reportError( + QObject::tr("Plugin to handle %1 no longer installed. An antivirus might have deleted files.") + .arg(*gameName)); + return nullptr; } |
