Skip to content

Commit 232f000

Browse files
committed
fix: Flip locations for kiiroo video translation
For translating kiiroo to launch, 4 is "base", 0 is "tip", as it were. We had these flipped. Fixes #226
1 parent 77a6053 commit 232f000

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Buttplug.Apps.KiirooEmulatorGUI/KiirooMessageTranslator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public FleshlightLaunchFW12Cmd Translate(KiirooCmd aMsg)
118118
_stopwatch.Start();
119119

120120
// Position Conversion
121-
var position = (ushort)(_currentGoalPosition > 2 ? 95 : 5);
121+
var position = (ushort)(_currentGoalPosition > 2 ? 5 : 95);
122122
if (elapsed <= 150)
123123
{
124124
if (_limitedSpeed == 0)

0 commit comments

Comments
 (0)