removed default, just to be sure

This commit is contained in:
thrust26 2020-12-21 17:37:10 +01:00
parent d4eb9535ef
commit 8655e52330
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ class PhysicalJoystickHandler
private:
struct StickInfo
{
StickInfo(const nlohmann::json& map = nullptr, PhysicalJoystickPtr stick = nullptr)
: mapping(map), joy{std::move(stick)} { }
StickInfo(const nlohmann::json map, PhysicalJoystickPtr stick = nullptr)
: mapping(map), joy{std::move(stick)} {}
nlohmann::json mapping;
PhysicalJoystickPtr joy;