From 8132427870d623954f4f57b4c52669c64895ac05 Mon Sep 17 00:00:00 2001 From: "Luiz \"Bills\"" Date: Sat, 21 Sep 2013 21:40:36 -0300 Subject: [PATCH] fix antialias bug --- src/core/Game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Game.js b/src/core/Game.js index 0d7aacd46..41c63da71 100644 --- a/src/core/Game.js +++ b/src/core/Game.js @@ -32,7 +32,7 @@ Phaser.Game = function (width, height, renderer, parent, state, transparent, ant parent = parent || ''; state = state || null; transparent = transparent || false; - antialias = antialias || true; + antialias = typeof antialias === 'undefined' ? true : antialias; /** * Phaser Game ID (for when Pixi supports multiple instances)