Skip to content

Commit

Permalink
fix: Flip locations for kiiroo video translation
Browse files Browse the repository at this point in the history
For translating kiiroo to launch, 4 is "base", 0 is "tip", as it were.
We had these flipped.

Fixes #226
  • Loading branch information
qdot committed Aug 8, 2017
1 parent 77a6053 commit 232f000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Buttplug.Apps.KiirooEmulatorGUI/KiirooMessageTranslator.cs
Expand Up @@ -118,7 +118,7 @@ public FleshlightLaunchFW12Cmd Translate(KiirooCmd aMsg)
_stopwatch.Start();

// Position Conversion
var position = (ushort)(_currentGoalPosition > 2 ? 95 : 5);
var position = (ushort)(_currentGoalPosition > 2 ? 5 : 95);
if (elapsed <= 150)
{
if (_limitedSpeed == 0)
Expand Down

0 comments on commit 232f000

Please sign in to comment.