Skip to content

Commit 625ca20

Browse files
committed
Fix lint error introduced by phaserjs#4989
1 parent d4c25ea commit 625ca20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/physics/arcade/World.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ var World = new Class({
938938
// Will a step happen this frame?
939939
var willStep = (this._elapsed >= msPerFrame);
940940

941-
if(!this.fixedStep)
941+
if (!this.fixedStep)
942942
{
943943
fixedDelta = delta * 0.001;
944944
willStep = true;

0 commit comments

Comments
 (0)