diff options
| author | a1xd <[email protected]> | 2021-07-05 23:33:41 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-07-05 23:33:41 -0400 |
| commit | 31efc792f5895d7ef3533390875de3c480add996 (patch) | |
| tree | 8db5b16a88f50448cb525ba8ae56801985294f63 /common/utility-rawinput.hpp | |
| parent | Merge pull request #87 from matthewstrasiotto/streamer_mode (diff) | |
| parent | Handle power\exponent correctly in GUI (diff) | |
| download | rawaccel-31efc792f5895d7ef3533390875de3c480add996.tar.xz rawaccel-31efc792f5895d7ef3533390875de3c480add996.zip | |
merge lut2
Diffstat (limited to 'common/utility-rawinput.hpp')
| -rw-r--r-- | common/utility-rawinput.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/utility-rawinput.hpp b/common/utility-rawinput.hpp index c3a4576..f04b2c1 100644 --- a/common/utility-rawinput.hpp +++ b/common/utility-rawinput.hpp @@ -66,7 +66,7 @@ void rawinput_foreach_dev_with_id(Func fn, bool with_instance_id = false, if (!with_instance_id) { auto instance_delim_pos = id.find_last_of('\\'); - if(instance_delim_pos != std::string::npos) id.resize(instance_delim_pos); + if (instance_delim_pos != std::string::npos) id.resize(instance_delim_pos); } fn(dev, id); |