fix missing semicolon

This commit is contained in:
Chad Engler 2015-03-22 21:28:27 -07:00
parent 97410f8907
commit f5af981da3

View file

@ -366,7 +366,7 @@ Phaser.Utils.extend(Phaser.Physics.P2.BodyDebug.prototype, {
drawCapsule: function(g, x, y, angle, len, radius, color, fillColor, lineWidth) {
if (typeof lineWidth === 'undefined') { lineWidth = 1; }
if (typeof color === 'undefined') { color = 0x000000 }
if (typeof color === 'undefined') { color = 0x000000; }
g.lineStyle(lineWidth, color, 1);