Skip to content

Commit

Permalink
Bug fix - need to call writeUInt16LE on this buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
pdodde authored and pekim committed Jul 7, 2012
1 parent 7371ea8 commit 7f33ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracking-buffer/writable-tracking-buffer.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class WritableTrackingBuffer
@position += length

writeUShort: (value) ->
writeUInt16LE(value)
@writeUInt16LE(value)

writeUInt16BE: (value) ->
length = 2
Expand Down

0 comments on commit 7f33ffe

Please sign in to comment.