]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_execprogram.h
Removed some debug printings, and made some others requiring developer >= 100. Reset...
[xonotic/darkplaces.git] / prvm_execprogram.h
index aa79fdb3648c4966f3e7dda0d79c8bbd866aa597..e1159c8fa725ebd7f08d59596cb5104d4ae9baf7 100644 (file)
                                        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);