Process.dll: Changed return value when process not active to -1 (was 0)

This commit is contained in:
Birunthan Mohanathas 2012-01-01 13:10:51 +00:00
parent c4a2d0f2c0
commit 131a3424b5

View File

@ -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;