mirror of https://github.com/stella-emu/stella.git
...and removed the const too
This commit is contained in:
parent
8655e52330
commit
1d90b3caec
|
@ -49,7 +49,7 @@ class PhysicalJoystickHandler
|
||||||
private:
|
private:
|
||||||
struct StickInfo
|
struct StickInfo
|
||||||
{
|
{
|
||||||
StickInfo(const nlohmann::json map, PhysicalJoystickPtr stick = nullptr)
|
StickInfo(nlohmann::json map, PhysicalJoystickPtr stick = nullptr)
|
||||||
: mapping(map), joy{std::move(stick)} {}
|
: mapping(map), joy{std::move(stick)} {}
|
||||||
|
|
||||||
nlohmann::json mapping;
|
nlohmann::json mapping;
|
||||||
|
|
Loading…
Reference in New Issue