tangled
alpha
login
or
join now
buttplug.io
/
buttplug
20
fork
atom
Buttplug sex toy control library
20
fork
atom
overview
issues
pulls
pipelines
chore: Fix unneeded parens
qdot.tngl.sh
5 months ago
ffaac5b7
7f505727
+1
-1
1 changed file
expand all
collapse all
unified
split
crates
buttplug_client
src
device
feature.rs
+1
-1
crates/buttplug_client/src/device/feature.rs
···
160
160
OutputCommand::Oscillate(OutputValue::new(self.check_step_value(output, *v as i32)?))
161
161
}
162
162
ClientDeviceOutputCommand::Rotate(v) => {
163
163
-
OutputCommand::Rotate(OutputValue::new(self.check_step_value(output, (*v))?))
163
163
+
OutputCommand::Rotate(OutputValue::new(self.check_step_value(output, *v)?))
164
164
}
165
165
ClientDeviceOutputCommand::Constrict(v) => {
166
166
OutputCommand::Constrict(OutputValue::new(self.check_step_value(output, *v as i32)?))