Skip to content

Commit

Permalink
more faster
Browse files Browse the repository at this point in the history
  • Loading branch information
antimatter15 committed Jul 23, 2010
1 parent 745877a commit e1cfb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GIFEncoder.js
Expand Up @@ -29,7 +29,7 @@
}).join('')
}
ByteArray.prototype.writeByte = function(val){
this.bin.push(val >> 0 & 255);
this.bin.push(val);
}
ByteArray.prototype.writeUTFBytes = function(string){
for(var l = string.length, i = 0; i < l; i++)
Expand Down

0 comments on commit e1cfb98

Please sign in to comment.