Debugger changes for improved 32-bit support
This commit is contained in:
parent
9ba73970a4
commit
f50612e7ca
21 changed files with 3581 additions and 2949 deletions
|
|
@ -88,7 +88,7 @@ str.parseInt = function(s, base)
|
|||
}
|
||||
var v;
|
||||
if (str.isValidInt(s, base) && !isNaN(v = parseInt(s, base))) {
|
||||
value = v;
|
||||
value = v|0;
|
||||
}
|
||||
}
|
||||
return value;
|
||||
|
|
|
|||
Loading…
Reference in a new issue