Fixes the mc giving priority to ticker subsystems (#49893)

The malformed logic here kept the mc from running all ticker subsystems first, (a functionality that i'm not even sure we need to preserve, as long as we update the docs, thoughts?)
This commit is contained in:
Kyle Spier-Swenson
2020-03-12 09:31:08 +13:00
committed by GitHub
parent a87708f249
commit 7a218d05c2
+1 -1
View File
@@ -137,7 +137,7 @@
queue_node_flags = queue_node.flags
if (queue_node_flags & SS_TICKER)
if (!(SS_flags & (SS_TICKER|SS_BACKGROUND)) == SS_TICKER)
if ((SS_flags & (SS_TICKER|SS_BACKGROUND)) != SS_TICKER)
continue
if (queue_node_priority < SS_priority)
break