Skip to content

Commit 1bc0123

Browse files
committed
Fix whitespace formatting of default parameters
1 parent 7e0aa6b commit 1bc0123

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/XInput.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ class XInputController {
8686
void setButton(uint8_t button, boolean state);
8787

8888
void setDpad(XInputControl pad, boolean state);
89-
void setDpad(boolean up, boolean down, boolean left, boolean right, boolean useSOCD = true);
89+
void setDpad(boolean up, boolean down, boolean left, boolean right, boolean useSOCD=true);
9090

9191
void setTrigger(XInputControl trigger, int32_t val);
9292

9393
void setJoystick(XInputControl joy, int32_t x, int32_t y);
94-
void setJoystick(XInputControl joy, boolean up, boolean down, boolean left, boolean right, boolean useSOCD = true);
9594
void setJoystickX(XInputControl joy, int32_t x);
9695
void setJoystickY(XInputControl joy, int32_t y);
96+
void setJoystick(XInputControl joy, boolean up, boolean down, boolean left, boolean right, boolean useSOCD=true);
9797

9898
void releaseAll();
9999

@@ -136,7 +136,7 @@ class XInputController {
136136
void reset();
137137

138138
// Debug
139-
void printDebug(Print& output = Serial) const;
139+
void printDebug(Print& output=Serial) const;
140140

141141
private:
142142
// Sent Data

0 commit comments

Comments
 (0)