09-12-2008, 11:33 PM
Ew I just noticed something.
All your timers in the gameloop should match this format:
And FPS:
All your timers in the gameloop should match this format:
Code:
If MapAnimTimer < Tick Then
MapAnimTimer = Tick + 250
End If
And FPS:
Code:
If TickFPS < Tick Then
GameFPS = FPS
TickFPS = Tick + 1000
FPS = 0
Else
FPS = FPS + 1
End If