Hi everyone, I just encountered a strange bug - but I am not sure if it is actually a bug. In my game I have a rounded rectangle which I create like this: this.speechbubble = this.game.add.graphics(10,35);this.speechbubble.beginFill(0xffffff, 1).drawRoundedRect(0,0,width,height,5);If I set height to excatly 150 Pixel I get following error: "TypeError: s is null" which is somewhere deep in phaser.min.js This does not happen when using a height of 149 or 151 pixel. Cheers EDIT: It seems to connect with the roundness.... if I set the radius to something else than 5 it works with a width of 150.