Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Online/time_interpolator.h')
-rw-r--r--Source/Online/time_interpolator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Online/time_interpolator.h b/Source/Online/time_interpolator.h
index 9150c7de..6dc31264 100644
--- a/Source/Online/time_interpolator.h
+++ b/Source/Online/time_interpolator.h
@@ -23,12 +23,12 @@
#pragma once
class Timestamps {
-private:
+ private:
float* timestamps;
int timestamp_size;
int timestamp_count;
-public:
+ public:
Timestamps();
~Timestamps();
@@ -42,7 +42,7 @@ public:
};
class TimeInterpolator {
-public:
+ public:
Timestamps timestamps;
float virtual_host_walltime = 0.f;
@@ -54,7 +54,7 @@ public:
float full_interpolation = 0.f;
float host_walltime_offset_shift_acc = 0.f;
- float host_walltime_offset_shift_vel = 0.f;
+ float host_walltime_offset_shift_vel = 0.f;
static float offset_shift_coefficient_factor;
static int target_window_size;