Roster: print when sending B_READY_TO_RUN

This commit is contained in:
John Scipione
2014-06-25 19:32:27 -04:00
parent 732c579702
commit 807a7aa09a
+3 -1
View File
@@ -2591,10 +2591,12 @@ BRoster::_SendToRunning(team_id team, int argc, const char* const* args,
} else if (alreadyRunning && (!messageList || messageList->IsEmpty()))
messenger.SendMessage(B_SILENT_RELAUNCH);
if (!alreadyRunning) {
// send B_READY_TO_RUN
if (!alreadyRunning)
DBG(OUT("_SendToRunning : B_READY_TO_RUN\n"));
messenger.SendMessage(B_READY_TO_RUN);
}
}
return error;
}