From 598ffa03b4191a6b51374c8ee2528f2d1dadbb62 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Sun, 29 Aug 2021 20:42:32 -0400 Subject: bugfix - oob in SettingsErrors::ToString --- common/rawaccel-validate.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common') diff --git a/common/rawaccel-validate.hpp b/common/rawaccel-validate.hpp index e776298..a03f56a 100644 --- a/common/rawaccel-validate.hpp +++ b/common/rawaccel-validate.hpp @@ -6,8 +6,8 @@ namespace rawaccel { struct valid_ret_t { - int count_x = 0; - int count_y = 0; + int last_x = 0; + int last_y = 0; int count = 0; explicit operator bool() const @@ -136,9 +136,9 @@ namespace rawaccel { check_accel(args.argsv.x); if (!args.combine_mags) { - ret.count_x = ret.count; + ret.last_x = ret.count; check_accel(args.argsv.y); - ret.count_y = ret.count; + ret.last_y = ret.count; } if (args.dpi <= 0) { -- cgit v1.2.3