mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 06:25:46 +00:00
Fixed timer wrapping problem
This commit is contained in:
parent
f334272243
commit
a16f7c2268
1 changed files with 10 additions and 2 deletions
|
|
@ -77,8 +77,16 @@ public class Timer {
|
|||
* @return the time in seconds, as a float
|
||||
*/
|
||||
public float getTime() {
|
||||
if (!paused)
|
||||
lastTime = currentTime - startTime;
|
||||
if (!paused) {
|
||||
if (currentTime > startTime) {
|
||||
lastTime = currentTime - startTime;
|
||||
} else {
|
||||
// The timer seems to have wrapped round. We don't know
|
||||
// when it wrapped round, so the only thing we can reasonably
|
||||
// do is reset the starttime and have a "glitch"
|
||||
startTime = currentTime;
|
||||
}
|
||||
}
|
||||
|
||||
return (float) ((double) lastTime / (double) resolution);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue