diff options
author | maximius <none@none> | 2009-09-26 13:00:40 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-09-26 13:00:40 -0700 |
commit | ff3f556423bc90f8476c8b09bacb60cd621b2664 (patch) | |
tree | b2070edc7a3698118a2f31ec0c2a613e08ee766e /src | |
parent | 9dfaa0289539b26318584486be387150519040c4 (diff) |
*Missed condition, thanks Zor :)
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/trinityrealm/Main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/trinityrealm/Main.cpp b/src/trinityrealm/Main.cpp index 5c41304592a..96c1abe5c28 100644 --- a/src/trinityrealm/Main.cpp +++ b/src/trinityrealm/Main.cpp @@ -339,7 +339,8 @@ void OnSignal(int s) break; #ifdef _WIN32 case SIGBREAK: - stopEvent = true; + if (m_ServiceStatus != 1) + stopEvent = true; break; #endif } |