Merge pull request #2381 from englercj/dev

Fix typo in componentToHex
This commit is contained in:
Richard Davey 2016-04-04 17:09:56 +01:00
commit 4925080781

View file

@ -458,7 +458,7 @@ Phaser.Utils.extend(Phaser.Physics.P2.BodyDebug.prototype, {
var hex;
hex = c.toString(16);
if (hex.len === 2)
if (hex.length === 2)
{
return hex;
}