From 996c49f5a319ea3976104d2c121eb6d624bc96eb Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Mon, 29 Jun 2026 20:52:34 -0500 Subject: [PATCH] moved PollVelocity debug print outside of loop to avoid redundant terminal output --- main.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.lua b/main.lua index 1a64654..3c94e9e 100644 --- a/main.lua +++ b/main.lua @@ -568,12 +568,12 @@ function PollVelocity() VelocityVectors[vsAxis] = vsVelocity SensorData.Velocity.Raw = VelocityVectors - - if Config.Debug then - print("DEBUG: PollVelocity fetched sensor data: "..tableToString(SensorData.Velocity)) - end end + + if Config.Debug then + print("DEBUG: PollVelocity fetched sensor data: "..tableToString(SensorData.Velocity)) + end else if Config.Debug then print("DEBUG: No velocity sensors found.")