]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_exec.c
DP_SV_PING_PACKETLOSS: expose packet loss to server QC
[xonotic/darkplaces.git] / prvm_exec.c
index f32ff3f22c2355651dc466faf0bfc1147909c4e5..97130220029d56a6a55f86bebe5a486658edac58 100644 (file)
@@ -212,7 +212,7 @@ void PRVM_PrintFunctionStatements (const char *name)
                        endstatement = prog->functions[i].first_statement;
 
        // now print the range of statements
-       Con_Printf("%s progs: disassembly of function %s (statements %i-%i):\n", PRVM_NAME, name, firststatement, endstatement);
+       Con_Printf("%s progs: disassembly of function %s (statements %i-%i, locals %i-%i):\n", PRVM_NAME, name, firststatement, endstatement, func->parm_start, func->parm_start + func->locals - 1);
        for (i = firststatement;i < endstatement;i++)
        {
                PRVM_PrintStatement(prog->statements + i);