Allow ascii in rooms, changed themes

This commit is contained in:
James Booth
2016-02-25 02:02:02 +00:00
parent bb8bb9de5c
commit fe1585ecfd
3 changed files with 5 additions and 4 deletions

View File

@@ -11,9 +11,9 @@ cmd_pid(char **args)
pid_t ppid = getppid();
char buf[50];
sprintf(buf, "PID: %d", pid);
prof_cons_show_themed("pid", "self", "bold_cyan", buf);
prof_cons_show_themed("pid", "self", NULL, buf);
sprintf(buf, "Parent PID: %d", ppid);
prof_cons_show_themed("pid", "parent", "cyan", buf);
prof_cons_show_themed("pid", "parent", NULL, buf);
prof_cons_alert();
}