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

View File

@ -2591,9 +2591,11 @@ BRoster::_SendToRunning(team_id team, int argc, const char* const* args,
} else if (alreadyRunning && (!messageList || messageList->IsEmpty()))
messenger.SendMessage(B_SILENT_RELAUNCH);
// send B_READY_TO_RUN
if (!alreadyRunning)
if (!alreadyRunning) {
// send B_READY_TO_RUN
DBG(OUT("_SendToRunning : B_READY_TO_RUN\n"));
messenger.SendMessage(B_READY_TO_RUN);
}
}
return error;