mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
don't yield if no garbage, quick feedback
This commit is contained in:
parent
181f690bb8
commit
48d9e54a0f
@ -200,7 +200,8 @@ class GarbageReport(Job):
|
|||||||
if self._args.log:
|
if self._args.log:
|
||||||
self.printingBegin()
|
self.printingBegin()
|
||||||
for i in xrange(len(self._report)):
|
for i in xrange(len(self._report)):
|
||||||
yield None
|
if self.numGarbage > 0:
|
||||||
|
yield None
|
||||||
self.notify.info(self._report[i])
|
self.notify.info(self._report[i])
|
||||||
self.printingEnd()
|
self.printingEnd()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user