`Remove unused variable.

This commit is contained in:
kovacsv 2021-07-25 16:41:19 +02:00
parent 2bd020fd62
commit 90019e5a07

View File

@ -218,7 +218,7 @@ OV.ClickDetector = class
}
}
Leave (ev)
Leave ()
{
this.isClick = false;
this.button = 0;
@ -427,7 +427,7 @@ OV.Navigation = class
ev.preventDefault ();
this.mouse.Leave (this.canvas, ev);
this.clickDetector.Leave (ev);
this.clickDetector.Leave ();
}
OnTouchStart (ev)