mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 22:18:29 +00:00
swapped argument order of Rectangle.containsRect - fixes #1095
This commit is contained in:
parent
118ea6f84a
commit
a435191fd0
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ Phaser.Rectangle.prototype = {
|
|||
*/
|
||||
containsRect: function (b) {
|
||||
|
||||
return Phaser.Rectangle.containsRect(this, b);
|
||||
return Phaser.Rectangle.containsRect(b, this);
|
||||
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue