We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fcc4df commit 9754584Copy full SHA for 9754584
1 file changed
Source/Utility/looper.h
@@ -69,9 +69,9 @@ class Looper
69
float inc;
70
bool hitloop = false;
71
// Record forward at normal speed during the first loop no matter what.
72
- inc = state_ == State::EMPTY || state_ == State::REC_FIRST
73
- ? 1.f
74
- : GetIncrementSize();
+ inc = state_ == State::EMPTY || state_ == State::REC_FIRST
+ ? 1.f
+ : GetIncrementSize();
75
win_ = WindowVal(win_idx_ * kWindowFactor);
76
switch(state_)
77
{
@@ -247,7 +247,7 @@ class Looper
247
248
void SetIncrementSize(float increment) { increment_size = increment; }
249
250
- inline float GetPos() const { return pos_; }
+ inline float GetPos() const { return pos_; }
251
inline size_t GetRecSize() const { return recsize_; }
252
253
private:
0 commit comments