mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Process.dll: Changed return value when process not active to -1 (was 0)
This commit is contained in:
parent
c4a2d0f2c0
commit
131a3424b5
@ -92,7 +92,7 @@ UINT Update(UINT id)
|
||||
g_UpdateCount = 0;
|
||||
}
|
||||
|
||||
result = (UINT)(*iter).second.isRunning;
|
||||
result = (UINT)(*iter).second.isRunning ? 1 : -1;
|
||||
}
|
||||
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user