Skip to content

Commit

Permalink
fix: symmetry is a percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
Balte de Wit committed Aug 14, 2018
1 parent 93e751d commit 3dd03a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class TransitionWipeCommand extends AbstractCommand {

buffer.writeUInt16BE(this.properties.borderWidth, 10)
buffer.writeUInt16BE(this.properties.borderInput, 12)
buffer.writeUInt16BE(this.properties.symmetry ? 1 : 0, 14)
buffer.writeUInt16BE(this.properties.symmetry, 14)

buffer.writeUInt16BE(this.properties.borderSoftness, 16)
buffer.writeUInt16BE(this.properties.xPosition, 18)
Expand Down

0 comments on commit 3dd03a9

Please sign in to comment.