10-13-2022, 11:41 PM
Even if I can't describe it exactly right away, but actually it is clear.
Compare this in the For Loop:
With the:
My feeling tells me it's better. I hope my feeling is not wrong.
Compare this in the For Loop:
Code: (Select All)
h = SCREEN(j, k + i)
IF h = ASC(g.flagship) OR h = g.m_asc THEN
IF h = ASC(g.flagship) THEN
With the:
Code: (Select All)
IF SCREEN(j, k + i) = ASC(g.flagship) OR SCREEN(j, k + i) = g.m_asc THEN
IF SCREEN(j, k + i) = ASC(g.flagship) THEN