1 changed files with 2 additions and 2 deletions
@ -1,8 +1,8 @@ |
|||
|
|||
exports.intFromCompact = function(c) |
|||
{ |
|||
var bytes = (c >> 24) & 0xff; |
|||
var v = (c & 0xffffff) << (8 * (bytes - 3)); |
|||
var bytes = ((c >>> 24) & 0xff) >>> 0; |
|||
var v = ((c & 0xffffff) << (8 * (bytes - 3))) >>> 0; |
|||
return v; |
|||
} |
|||
|
|||
|
Loading…
Reference in new issue