Is this code:
g_update = 1 - g_update
Select g_update
Case 0 : ;Do nothing
Case 1 : Update()
End Select
faster than this code:
g_update = 1 - g_update
If (g_update=True) then Update()
Regards,
RV
www.OctaneDigitalStudios.com
g_update = 1 - g_update
Select g_update
Case 0 : ;Do nothing
Case 1 : Update()
End Select
faster than this code:
g_update = 1 - g_update
If (g_update=True) then Update()
Regards,
RV
www.OctaneDigitalStudios.com