diff --git a/unsupported/UnsupportedProcessList.c b/unsupported/UnsupportedProcessList.c index 119c9c3e..753f83b3 100644 --- a/unsupported/UnsupportedProcessList.c +++ b/unsupported/UnsupportedProcessList.c @@ -50,6 +50,10 @@ void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) { Process_updateCmdline(proc, "", 0, 0); Process_updateExe(proc, "/path/to/executable"); + if (proc->settings->flags & PROCESS_FLAG_CWD) { + proc->procCwd = "/current/working/directory"; + } + proc->updated = true; proc->state = 'R';