Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
lightmanLP committed Jan 2, 2025
1 parent a1f957b commit 1966d12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ std::shared_ptr<WheelHandler> WheelHandler::GetInstance() {
return mInstance;
}

void WheelHandler::UpdateAxisBuffer(float *buf, float input) {
void WheelHandler::UpdateAxisBuffer(float* buf, float input) {
static const float LIMIT = 2.0f;
static const float REDUCE_STEP = 1.0f;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class WheelHandler {

private:
float CalcDirectionValue(CoordsF& coords, WheelDirection direction);
void UpdateAxisBuffer(float *buf, float input);
void UpdateAxisBuffer(float* buf, float input);

static std::shared_ptr<WheelHandler> mInstance;

Expand Down

0 comments on commit 1966d12

Please sign in to comment.