J
JellyDonutMan
Guest
Having a problem with DirectX 9 and VB.NET displaying only 50 FPS max ... This is the code Im using to get the FPS
Code:
Public Function GetFPS()
CurrentTime = Environment.TickCount()
Frames += 1
If CurrentTime - LastTime >= 1000 Then
FPS = Frames
LastTime = CurrentTime
Frames = 0
End If
Return FPS
End Function