timespec_to_sec now first multiplies tv_nsec by 1E-09 to convert to seconds
parent
56679110e3
commit
a49ac0db93
|
@ -13,7 +13,7 @@ static struct timespec start_last_frame;
|
|||
|
||||
inline static
|
||||
double timespec_to_sec(struct timespec spec) {
|
||||
return spec.tv_sec + spec.tv_nsec;
|
||||
return spec.tv_sec + spec.tv_nsec * 1E-09f;
|
||||
}
|
||||
|
||||
inline float delta_time() {
|
||||
|
|
Loading…
Reference in New Issue