Skip to content

Commit

Permalink
Merge branch 'patch-1' of https://github.com/mcauer/three.js into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Dec 11, 2013
2 parents 364b356 + f344f0d commit c135af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/js/loaders/ctm/ctm.js
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ CTM.Stream.prototype.readString = function(){

this.offset += len;

return this.data.subarray(this.offset - len, len);
return String.fromCharCode.apply(null,this.data.subarray(this.offset - len, this.offset));
};

CTM.Stream.prototype.readArrayInt32 = function(array){
Expand Down

0 comments on commit c135af2

Please sign in to comment.