diff options
| author | a1xd <[email protected]> | 2020-10-08 23:12:08 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-08 23:12:08 -0400 |
| commit | f4c04b4eb03fdbf1f3402dfb26e891ce8d968c9f (patch) | |
| tree | 2da2e0e956c8b92c24260ec9ed4fa3f0681c0a1a /wrapper/wrapper.cpp | |
| parent | Fixed anisotropy not loading correctly on save (diff) | |
| parent | add magic number to constants (diff) | |
| download | rawaccel-f4c04b4eb03fdbf1f3402dfb26e891ce8d968c9f.tar.xz rawaccel-f4c04b4eb03fdbf1f3402dfb26e891ce8d968c9f.zip | |
Merge pull request #33 from a1xd/1.1v1.1.0
1.1
Diffstat (limited to 'wrapper/wrapper.cpp')
| -rw-r--r-- | wrapper/wrapper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrapper/wrapper.cpp b/wrapper/wrapper.cpp index a8fc0fb..a921801 100644 --- a/wrapper/wrapper.cpp +++ b/wrapper/wrapper.cpp @@ -63,7 +63,7 @@ public ref struct DriverSettings [JsonProperty("Accel parameters")] Vec2<AccelArgs> args; - [JsonProperty("Sensitivity")] + [JsonProperty("Sensitivity multipliers")] Vec2<double> sensitivity; [JsonProperty(Required = Required::Default)] @@ -177,7 +177,7 @@ public: public ref struct DriverInterop { literal double WriteDelayMs = WRITE_DELAY; - static initonly AccelArgs^ DefaultArgs = get_default()->args.x; + static initonly DriverSettings^ DefaultSettings = get_default(); static DriverSettings^ GetActiveSettings() { |