diff options
| author | 2023-07-06 18:57:07 -0400 | |
|---|---|---|
| committer | 2023-07-06 18:57:07 -0400 | |
| commit | 95c5b715b18174d4dedaa415004e99040d5f71ef (patch) | |
| tree | 2dbfacffcfea5df73e77c149c62b63a72f850334 /src/input_common/drivers/mouse.cpp | |
| parent | vfs_real: use open file size for getting size (#11016) (diff) | |
| parent | input_common: Avoid potential division by zero (diff) | |
| download | yuzu-95c5b715b18174d4dedaa415004e99040d5f71ef.tar.gz yuzu-95c5b715b18174d4dedaa415004e99040d5f71ef.tar.xz yuzu-95c5b715b18174d4dedaa415004e99040d5f71ef.zip | |
Merge pull request #11031 from german77/zero
input_common: Avoid potential division by zero
Diffstat (limited to 'src/input_common/drivers/mouse.cpp')
| -rw-r--r-- | src/input_common/drivers/mouse.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp index dac29c78f..9fb824baf 100644 --- a/src/input_common/drivers/mouse.cpp +++ b/src/input_common/drivers/mouse.cpp | |||
| @@ -160,8 +160,9 @@ void Mouse::Move(int x, int y, int center_x, int center_y) { | |||
| 160 | last_mouse_change.y += mouse_change.y * y_sensitivity; | 160 | last_mouse_change.y += mouse_change.y * y_sensitivity; |
| 161 | 161 | ||
| 162 | // Bind the mouse change to [0 <= deadzone_counterweight <= 1.0] | 162 | // Bind the mouse change to [0 <= deadzone_counterweight <= 1.0] |
| 163 | if (last_mouse_change.Length() < deadzone_counterweight) { | 163 | const float length = last_mouse_change.Length(); |
| 164 | last_mouse_change /= last_mouse_change.Length(); | 164 | if (length < deadzone_counterweight && length != 0.0f) { |
| 165 | last_mouse_change /= length; | ||
| 165 | last_mouse_change *= deadzone_counterweight; | 166 | last_mouse_change *= deadzone_counterweight; |
| 166 | } | 167 | } |
| 167 | 168 | ||