This shaved another 4ms off here, instead of:Do:Code:IF population > 3 OR population < 2 THEN lednew[counter] = 0 ENDIFWe're trading readabillity for performance here...Code:IF Population > 3 THEN LEDNew[Counter] = 0 IF Population < 2 THEN LEDNew[Counter] = 0
Bookmarks