]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_execprogram.h
remove an unused variable
[xonotic/darkplaces.git] / prvm_execprogram.h
index 97f50b94f6e64157c0d05c6c356c8d074b8ed98f..e1159c8fa725ebd7f08d59596cb5104d4ae9baf7 100644 (file)
@@ -8,6 +8,9 @@
 #if PRVMTRACE
                        PRVM_PrintStatement(st);
 #endif
+#if PRVMSTATEMENTPROFILING
+                       prog->statement_profile[st - prog->statements]++;
+#endif
 
                        switch (st->op)
                        {
                                        prog->xfunction->profile += (st - startst);
                                        st += st->b - 1;        // offset the s++
                                        startst = st;
-                                       if (++jumpcount> 1000000)
+                                       if (++jumpcount == 1000000000)
                                        {
                                                prog->xstatement = st - prog->statements;
                                                PRVM_ERROR("runaway loop counter hit limit of %d jumps\ntip: if having trouble identifying the problem, try typing profile now in %s", jumpcount, PRVM_NAME);
                                        prog->xfunction->profile += (st - startst);
                                        st += st->b - 1;        // offset the s++
                                        startst = st;
-                                       if (++jumpcount> 1000000)
+                                       if (++jumpcount == 1000000000)
                                        {
                                                prog->xstatement = st - prog->statements;
                                                PRVM_ERROR("runaway loop counter hit limit of %d jumps\ntip: if having trouble identifying the problem, try typing profile now in %s", jumpcount, PRVM_NAME);
                                prog->xfunction->profile += (st - startst);
                                st += st->a - 1;        // offset the s++
                                startst = st;
-                               if (++jumpcount> 1000000)
+                               if (++jumpcount == 1000000000)
                                {
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("runaway loop counter hit limit of %d jumps\ntip: if having trouble identifying the problem, try typing profile now in %s", jumpcount, PRVM_NAME);