Skip to content

Commit f5af981

Browse files
committed
fix missing semicolon
1 parent 97410f8 commit f5af981

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/physics/p2/BodyDebug.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ Phaser.Utils.extend(Phaser.Physics.P2.BodyDebug.prototype, {
366366
drawCapsule: function(g, x, y, angle, len, radius, color, fillColor, lineWidth) {
367367

368368
if (typeof lineWidth === 'undefined') { lineWidth = 1; }
369-
if (typeof color === 'undefined') { color = 0x000000 }
369+
if (typeof color === 'undefined') { color = 0x000000; }
370370

371371
g.lineStyle(lineWidth, color, 1);
372372

0 commit comments

Comments
 (0)