Quote:
Originally Posted by Ether
Could you give some additional detail on how you set up the delta time measurement?
[/i]
|
We did it like this:
Code:
// begin thread
new_time = get_time();
delta_time = new_time - previous_time;
previous_time = new_time;
.
.// do stuff here
.
// end thread