X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml-runner;fp=bulletml-runner;h=ec6007b5738f8e570be849629cbe6406df53943f;hp=de0fa5a30f37cea8ab95f6884186f04265a35d1d;hb=ad4a740bd87e520bc0b13c0db2c332aba54cf68f;hpb=8c89bcae073f0e3c7e58a880512c8accb863bb07 diff --git a/bulletml-runner b/bulletml-runner index de0fa5a..ec6007b 100755 --- a/bulletml-runner +++ b/bulletml-runner @@ -85,12 +85,13 @@ def main(argv): frames += 1 if frames % 100 == 0: - seconds_per_bullet = elapsed / count - bullets_per_second = count / elapsed print " Processing: %04d: %d bullets, %d active." % ( frames, total, count) - print " %g seconds per bullet (60Hz max: %g)." % ( - seconds_per_bullet, bullets_per_second / 60) + if elapsed: + print " %g seconds per bullet (60Hz max: %g)." % ( + seconds_per_bullet = elapsed / count + bullets_per_second = count / elapsed + seconds_per_bullet, bullets_per_second / 60) screen.fill([0, 0, 0]) for obj in active: