Fix linting

This commit is contained in:
David Négrier 2021-01-25 12:02:00 +01:00
parent 8609cda0d0
commit c2c8680dae
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ const fps : Phaser.Types.Core.FPSConfig = {
}
// the ?phaserMode=canvas parameter can be used to force Canvas usage
let params = new URLSearchParams(document.location.search.substring(1));
let phaserMode = params.get("phaserMode");
const params = new URLSearchParams(document.location.search.substring(1));
const phaserMode = params.get("phaserMode");
let mode: number;
switch (phaserMode) {
case 'auto':