X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=pr_exec.c;h=2393ed1dd4d127d0939f31cee067f20e589cd555;hb=8ba95d27a44c667568ae9a5aa1b4b69d75a9d565;hp=c516fec7f2e6820ac648d3806252a1bb77016851;hpb=a6ea5ae57d7a1ae4a9bd6e24a6d3cc5eea990f0e;p=xonotic%2Fdarkplaces.git diff --git a/pr_exec.c b/pr_exec.c index c516fec7..2393ed1d 100644 --- a/pr_exec.c +++ b/pr_exec.c @@ -221,6 +221,8 @@ void PR_Profile_f (void) return; } + Con_Print( "Server Profile:\n[Profile] [BuiltinProfile] [CallCount]\n" ); + //howmany = 10; //if (Cmd_Argc() == 2) // howmany = atoi(Cmd_Argv(1)); @@ -241,7 +243,7 @@ void PR_Profile_f (void) if (best) { //if (num < howmany) - Con_Printf("%7i %7i %s\n", best->profile, best->builtinsprofile, PR_GetString(best->s_name)); + Con_Printf("%7i %7i %7i %s\n", best->profile, best->builtinsprofile, best->callcount, PR_GetString(best->s_name)); num++; best->profile = 0; best->builtinsprofile = 0;