Skip to content
Snippets Groups Projects
Verified Commit a714c34b authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix width and height

parent d27e36f1
No related branches found
No related tags found
Loading
Pipeline #7320 failed
......@@ -21,8 +21,8 @@ class Game extends Phaser.Game {
constructor(backend) {
let config = {
type: Phaser.AUTO,
width: window.innerWidth * window.devicePixelRatio,
height: window.innerHeight * window.devicePixelRatio,
width: window.innerWidth,
height: window.innerHeight,
scene: TestScene,
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment