Added missing header comments.
This commit is contained in:
@ -14,10 +14,7 @@ void epochInit(epoch_t *epoch) {
|
||||
}
|
||||
|
||||
void epochUpdate(epoch_t *epoch, float platformDelta) {
|
||||
platformDelta = mathMax(
|
||||
mathMin(platformDelta, EPOCH_FIXED_STEP),
|
||||
0
|
||||
);
|
||||
platformDelta = mathClamp(platformDelta, 0, EPOCH_FIXED_STEP);
|
||||
|
||||
epoch->last = epoch->current;
|
||||
epoch->current = epoch->current + platformDelta;
|
||||
|
Reference in New Issue
Block a user