Skip to content

Commit

Permalink
Regenerated to get rid of idiot mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgredonps committed Dec 6, 2016
1 parent 1b28d1b commit 8f5ca04
Show file tree
Hide file tree
Showing 191 changed files with 3,342 additions and 3,040 deletions.
4 changes: 2 additions & 2 deletions dis6.js
Original file line number Diff line number Diff line change
Expand Up @@ -11724,14 +11724,14 @@ dis.SetDataPdu = function()
this.numberOfVariableDatumRecords = inputStream.readUInt();
for(var idx = 0; idx < this.numberOfFixedDatumRecords; idx++)
{
var anX = new dis.UnsignedIntegerWrapper();
var anX = new dis.FixedDatum();
anX.initFromBinary(inputStream);
this.fixedDatums.push(anX);
}

for(var idx = 0; idx < this.numberOfVariableDatumRecords; idx++)
{
var anX = new dis.UnsignedIntegerWrapper();
var anX = new dis.VariableDatum();
anX.initFromBinary(inputStream);
this.variableDatums.push(anX);
}
Expand Down
Loading

0 comments on commit 8f5ca04

Please sign in to comment.