Clear debug process id at stop() to prevent invalid checking of them

This commit is contained in:
Yuri Roubinsky 2021-07-29 19:08:15 +03:00
parent 4a3430bd27
commit a03af773e8

View file

@ -270,6 +270,7 @@ void EditorRun::stop() {
for (const OS::ProcessID &E : pids) {
OS::get_singleton()->kill(E);
}
pids.clear();
}
status = STATUS_STOP;