/* * G_MuteClient */ static void G_MuteClient(char *name, boolean_t mute) { g_client_t *cl; if (!(cl = G_ClientByName(name))) return; cl->muted = mute; }
/* * @brief */ static void G_MuteClient(char *name, _Bool mute) { g_client_t *cl; if (!(cl = G_ClientByName(name))) return; cl->locals.muted = mute; }