diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-02-19 03:24:52 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-02-19 03:26:08 -0600 |
| commit | 9ec158dceea37c9d783a8439d3c1253186efbbda (patch) | |
| tree | 1e66f6811d8ab6c94a93ff862481d5d80132f226 /src/organizercore.h | |
| parent | 046a72346c82ac48f770ae6e015025f24d019460 (diff) | |
Fix for Steam being run as administrator
Previously, when Steam was run as administrator, MO couldn't
access the process therefore couldn't detect it. Now, an
alternative method for listing processes is now being used
in order to determine if Steam is running.
Additionally, MO will detect if Steam is admin and MO is not
and prompt the user if they want to restart MO as admin.
Diffstat (limited to 'src/organizercore.h')
| -rw-r--r-- | src/organizercore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/organizercore.h b/src/organizercore.h index 0a4cff6c..2757aaf3 100644 --- a/src/organizercore.h +++ b/src/organizercore.h @@ -272,7 +272,7 @@ private: void updateModActiveState(int index, bool active);
void updateModsActiveState(const QList<unsigned int> &modIndices, bool active);
- bool testForSteam();
+ bool testForSteam(bool *found, bool *access);
bool createDirectory(const QString &path);
|
