diff options
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.cc b/src/app/main.cc index 5648b90..3c80520 100644 --- a/src/app/main.cc +++ b/src/app/main.cc @@ -281,10 +281,10 @@ int main(int argc, char** argv) { printf("Seeked to %.1fs\n", start_time); } - const float update_dt = 1.0f / 60.0f; // 60Hz update rate + const float update_dt = 1.0f / 60.0f; // 60Hz update rate const int sample_rate = 32000; - std::vector<float> chunk_buffer(2048); // Max samples for one update + std::vector<float> chunk_buffer(2048); // Max samples for one update double physical_time = start_time; double frame_accumulator = 0.0; |
