Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
briaguya-ai committed Dec 14, 2024
1 parent ed6f413 commit c3cd6ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/controller/controldeck/ControlDeck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@

namespace Ship {

ControlDeck::ControlDeck(std::vector<CONTROLLERBUTTONS_T> additionalBitmasks)
: mSinglePlayerMappingMode(false) {
ControlDeck::ControlDeck(std::vector<CONTROLLERBUTTONS_T> additionalBitmasks) : mSinglePlayerMappingMode(false) {
mDeviceIndexMappingManager = std::make_shared<ShipDeviceIndexMappingManager>();
}

Expand Down Expand Up @@ -128,4 +127,4 @@ void ControlDeck::WriteToOSContPad(OSContPad* pad) {
}
}
}
} // namepsace LUS
} // namespace LUS
2 changes: 1 addition & 1 deletion src/controller/controldeck/ControlDeck.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ControlDeck {
std::shared_ptr<ShipDeviceIndexMappingManager> GetDeviceIndexMappingManager();

protected:
bool AllGameInputBlocked();
bool AllGameInputBlocked();
std::vector<std::shared_ptr<ControlPort>> mPorts = {};

private:
Expand Down
2 changes: 1 addition & 1 deletion src/controller/controldevice/controller/Controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,4 +345,4 @@ void Controller::ReadToOSContPad(OSContPad* pad) {
mPadBuffer.pop_back();
}
}
}
} // namespace LUS

0 comments on commit c3cd6ce

Please sign in to comment.