mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 09:48:18 +00:00
fix missing semicolon
This commit is contained in:
parent
97410f8907
commit
f5af981da3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue