Merge pull request #62 from fstreun/master

Fix DeviceConfig default initialization
This commit is contained in:
pixl 2020-05-15 04:03:16 -04:00 committed by GitHub
commit 1d7683237b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ To install, run `sudo make install` after building. You can set the daemon to st
| Device | Compatible? |
|:---------:|:-----------:|
| MX Master | Yes |
|MX Vertical| Yes |
| T400 | Yes |
| K400r | Untested |
| K350 | Untested |

View File

@ -20,7 +20,7 @@ namespace logid
DeviceConfig(DeviceConfig* dc, Device* dev);
DeviceConfig(const libconfig::Setting& root);
const int* dpi = nullptr;
HIDPP20::ISmartShift::SmartshiftStatus* smartshift;
HIDPP20::ISmartShift::SmartshiftStatus* smartshift = nullptr;
const uint8_t* hiresscroll = nullptr;
std::map<uint16_t, ButtonAction*> actions;
const bool baseConfig = true;